.page-gdpr {
  color: #FFF6D6; /* Text Main */
  background-color: #0A0A0A; /* Background */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.page-gdpr__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 40px;
  position: relative;
  overflow: hidden;
}

.page-gdpr__hero-image-wrapper {
  width: 100%;
  max-height: 675px; /* Max height for hero image */
  overflow: hidden;
}

.page-gdpr__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover; /* Ensures image covers area without distortion */
}

.page-gdpr__hero-content {
  position: relative; /* Ensure content is above image wrapper if needed, but not overlaying */
  z-index: 2;
  max-width: 900px;
  padding: 20px;
  margin-top: 30px;
}

.page-gdpr__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  color: #FFD36B; /* Glow */
  margin-bottom: 15px;
  font-weight: bold;
  line-height: 1.2;
}

.page-gdpr__hero-description {
  font-size: 1.15rem;
  margin-bottom: 30px;
  color: #FFF6D6;
}

.page-gdpr__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button gradient */
  color: #111111; /* Dark text for contrast */
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1.1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 211, 107, 0.4);
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-gdpr__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 211, 107, 0.6);
}

.page-gdpr__cta-button--secondary {
  background: #111111; /* Card BG */
  color: #FFD36B; /* Glow */
  border: 2px solid #FFD36B;
  box-shadow: none;
}

.page-gdpr__cta-button--secondary:hover {
  background: #3A2A12; /* Border */
  color: #FFF6D6;
  transform: translateY(-3px);
  box-shadow: 0 0 10px rgba(255, 211, 107, 0.5);
}

.page-gdpr__section {
  padding: 60px 20px;
  margin-bottom: 20px;
}

.page-gdpr__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

.page-gdpr__section-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: #F2C14E; /* Primary color */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-gdpr__text-block {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: justify;
  color: #FFF6D6;
}

.page-gdpr__grid-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-gdpr__card {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-gdpr__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(255, 211, 107, 0.2);
}

.page-gdpr__card-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  object-fit: contain;
  max-width: 100%;
}

.page-gdpr__card-title {
  font-size: 1.5rem;
  color: #FFD36B; /* Glow */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-gdpr__card-description {
  font-size: 1rem;
  color: #FFF6D6;
  line-height: 1.6;
}

.page-gdpr__list {
  list-style-type: disc;
  padding-left: 25px;
  margin-bottom: 20px;
  color: #FFF6D6;
}

.page-gdpr__list-item {
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.page-gdpr__list-item strong {
  color: #F2C14E; /* Primary color */
}

.page-gdpr__rights-list {
  list-style-type: none;
  padding: 0;
  margin-top: 30px;
}

.page-gdpr__rights-item {
  background-color: #111111; /* Card BG */
  border-left: 5px solid #F2C14E; /* Primary color */
  padding: 15px 20px;
  margin-bottom: 15px;
  font-size: 1.05rem;
  color: #FFF6D6;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease;
}

.page-gdpr__rights-item:hover {
  background-color: #3A2A12; /* Border */
}

.page-gdpr__security-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-gdpr__feature-item {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
}

.page-gdpr__feature-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 15px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  object-fit: contain;
  max-width: 100%;
}

.page-gdpr__feature-title {
  font-size: 1.35rem;
  color: #F2C14E; /* Primary color */
  margin-bottom: 10px;
  font-weight: bold;
}

.page-gdpr__feature-description {
  font-size: 0.95rem;
  color: #FFF6D6;
  line-height: 1.5;
}

.page-gdpr__faq-section {
  background-color: #0A0A0A; /* Background */
  padding-bottom: 60px;
}

.page-gdpr__faq-list {
  max-width: 900px;
  margin: 0 auto;
  margin-top: 40px;
}

.page-gdpr__faq-item {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #FFF6D6;
}

.page-gdpr__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-size: 1.15rem;
  font-weight: bold;
  color: #FFD36B; /* Glow */
  background-color: #111111; /* Card BG */
  transition: background-color 0.3s ease;
  list-style: none; /* For <summary> */
}

.page-gdpr__faq-question::-webkit-details-marker {
  display: none;
}

.page-gdpr__faq-question:hover {
  background-color: #3A2A12; /* Border */
}

.page-gdpr__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  color: #F2C14E; /* Primary color */
}

.page-gdpr__faq-answer {
  padding: 0 20px 20px;
  font-size: 1rem;
  line-height: 1.6;
  color: #FFF6D6;
}

.page-gdpr__faq-item[open] .page-gdpr__faq-question {
  background-color: #3A2A12;
}

.page-gdpr__faq-item[open] .page-gdpr__faq-toggle {
  content: '−';
}

.page-gdpr__contact-cta {
  text-align: center;
  padding-top: 40px;
  padding-bottom: 80px;
  background-color: #0A0A0A; /* Background */
}

/* Universal image responsiveness */
.page-gdpr img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Mobile responsiveness */
@media (max-width: 1024px) {
  .page-gdpr__hero-content {
    padding: 15px;
  }

  .page-gdpr__main-title {
    font-size: clamp(2rem, 5vw, 3rem);
  }

  .page-gdpr__hero-description {
    font-size: 1.05rem;
  }

  .page-gdpr__section-title {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
  }

  .page-gdpr__grid-layout,
  .page-gdpr__security-features {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
  }

  .page-gdpr__card,
  .page-gdpr__feature-item {
    padding: 25px;
  }

  .page-gdpr__card-title {
    font-size: 1.4rem;
  }

  .page-gdpr__feature-title {
    font-size: 1.25rem;
  }
}

@media (max-width: 768px) {
  .page-gdpr {
    font-size: 16px;
    line-height: 1.6;
  }

  /* Hero Section */
  .page-gdpr__hero-section {
    padding-top: 10px !important;
    padding-bottom: 30px;
  }

  .page-gdpr__hero-image-wrapper {
    max-height: none;
  }

  .page-gdpr__hero-image {
    object-fit: contain !important; /* Ensure image is fully visible, not cropped */
    aspect-ratio: unset !important;
    max-height: none !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-gdpr__hero-content {
    padding: 15px;
    margin-top: 20px;
  }

  .page-gdpr__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    margin-bottom: 10px;
  }

  .page-gdpr__hero-description {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  /* CTA Button */
  .page-gdpr__cta-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px;
    font-size: 1rem;
    margin-left: auto;
    margin-right: auto;
  }

  .page-gdpr__cta-button--secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px;
    font-size: 1rem;
  }

  /* General Sections */
  .page-gdpr__section {
    padding: 40px 15px;
  }

  .page-gdpr__container {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-gdpr__section-title {
    font-size: clamp(1.5rem, 5vw, 2rem);
    margin-bottom: 30px;
  }

  .page-gdpr__text-block,
  .page-gdpr__list-item,
  .page-gdpr__card-description,
  .page-gdpr__feature-description,
  .page-gdpr__rights-item {
    font-size: 0.95rem;
  }

  /* Grid Layouts */
  .page-gdpr__grid-layout,
  .page-gdpr__security-features {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-gdpr__card,
  .page-gdpr__feature-item {
    padding: 20px;
  }

  .page-gdpr__card-title {
    font-size: 1.3rem;
  }

  .page-gdpr__feature-title {
    font-size: 1.2rem;
  }

  /* FAQ Section */
  .page-gdpr__faq-list {
    margin-top: 30px;
  }

  .page-gdpr__faq-question {
    font-size: 1rem;
    padding: 15px;
  }

  .page-gdpr__faq-toggle {
    font-size: 1.3rem;
  }

  .page-gdpr__faq-answer {
    padding: 0 15px 15px;
  }

  /* All images */
  .page-gdpr img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  /* Mobile button groups */
  .page-gdpr__cta-buttons,
  .page-gdpr__button-group,
  .page-gdpr__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
    display: flex;
    flex-direction: column;
  }

  /* Content area image CSS size check (must be >= 200px) */
  .page-gdpr__card-icon,
  .page-gdpr__feature-icon {
    width: 80px;
    height: 80px;
    max-width: 100% !important;
    height: auto !important;
    min-width: 80px; /* Ensure it's not too small, but still responsive */
    min-height: 80px;
  }

  .page-gdpr__hero-image {
    min-width: 200px;
    min-height: 200px;
  }

  /* Ensure no horizontal scrollbar */
  .page-gdpr {
    overflow-x: hidden;
  }
}