.page-gdpr {
  color: var(--text-main);
  background: var(--background);
}

.page-gdpr__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0; /* body padding-top handles header offset */
  text-align: center;
  background: var(--deep-green);
  overflow: hidden;
}

.page-gdpr__hero-image-container {
  width: 100%;
  max-width: 1920px;
  margin-bottom: 30px;
}

.page-gdpr__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-gdpr__hero-content {
  max-width: 900px;
  padding: 0 20px;
  color: var(--text-main);
  position: relative; /* Ensure content is above any potential background elements */
  z-index: 2; /* Ensure text is not covered by image if layout shifts */
}

.page-gdpr__main-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-main);
  margin-bottom: 20px;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
}

.page-gdpr__hero-description {
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.6;
  margin-bottom: 30px;
  color: var(--text-secondary);
}

.page-gdpr__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  color: var(--text-main);
  background: var(--background);
}

.page-gdpr__container {
  max-width: 1000px;
  margin: 0 auto;
}

.page-gdpr__section-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 30px;
  text-align: center;
  position: relative;
}

.page-gdpr__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--glow);
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-gdpr__sub-title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 600;
  color: var(--text-main);
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-gdpr__text-block {
  margin-bottom: 30px;
  line-height: 1.7;
}

.page-gdpr__text-block p {
  margin-bottom: 15px;
  color: var(--text-secondary);
}

.page-gdpr__text-block a {
  color: var(--glow);
  text-decoration: underline;
}

.page-gdpr__list {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: var(--text-secondary);
}

.page-gdpr__list li {
  margin-bottom: 8px;
}

.page-gdpr__list strong {
  color: var(--text-main);
}

.page-gdpr__content-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  object-fit: cover;
}

.page-gdpr__faq-list {
  margin-top: 40px;
}

.page-gdpr__faq-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--text-secondary);
}

.page-gdpr__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1em;
  color: var(--text-main);
  background: linear-gradient(90deg, #11271B 0%, rgba(17, 39, 27, 0) 100%);
  border-bottom: 1px solid transparent; /* default */
}

.page-gdpr__faq-item[open] .page-gdpr__faq-question {
  border-bottom-color: var(--border);
}

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

.page-gdpr__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: var(--glow);
}

.page-gdpr__faq-answer {
  padding: 0 20px 20px 20px;
  line-height: 1.6;
  color: var(--text-secondary);
}

.page-gdpr__faq-answer p {
  margin-bottom: 0;
}

.page-gdpr__cta-section {
  text-align: center;
  padding: 60px 20px;
  background: var(--card-bg);
  border-radius: 12px;
  margin-top: 60px;
  border: 1px solid var(--border);
}

.page-gdpr__cta-section .page-gdpr__section-title {
  color: var(--text-main);
}

.page-gdpr__cta-section .page-gdpr__hero-description {
  color: var(--text-secondary);
  margin-bottom: 40px;
}

.page-gdpr__button-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.page-gdpr__btn-primary,
.page-gdpr__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.1em;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
}

.page-gdpr__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  border: 2px solid transparent;
}

.page-gdpr__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-gdpr__btn-secondary {
  background: transparent;
  color: var(--text-main);
  border: 2px solid var(--glow);
}

.page-gdpr__btn-secondary:hover {
  background: var(--glow);
  color: var(--background);
  transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-gdpr__hero-section {
    padding: 10px 15px 40px 15px;
  }
  .page-gdpr__content-area {
    padding: 40px 15px;
  }
  .page-gdpr__main-title {
    font-size: clamp(2rem, 5vw, 3rem);
  }
  .page-gdpr__hero-description {
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  }
}

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

  .page-gdpr__hero-section {
    padding: 10px 15px 30px 15px !important;
  }

  .page-gdpr__hero-image-container {
    margin-bottom: 20px;
  }

  .page-gdpr__hero-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

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

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

  .page-gdpr__hero-description {
    font-size: clamp(0.9rem, 3vw, 1rem);
    margin-bottom: 25px;
  }

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

  .page-gdpr__sub-title {
    font-size: clamp(1.2rem, 4vw, 1.6rem);
    margin-top: 30px;
    margin-bottom: 15px;
  }

  .page-gdpr__text-block {
    margin-bottom: 20px;
  }

  .page-gdpr__list {
    margin-left: 15px;
  }

  .page-gdpr__content-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    margin: 20px auto !important;
  }

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

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

  .page-gdpr__cta-section {
    padding: 40px 15px;
    margin-top: 40px;
  }

  .page-gdpr__button-group {
    flex-direction: column;
    gap: 15px;
  }

  .page-gdpr__btn-primary,
  .page-gdpr__btn-secondary {
    width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
  }
}

/* Color contrast enforcement based on body background */
/* Body background is #08160F (Deep Green/Dark) */
.page-gdpr {
  color: var(--text-main); /* #F2FFF6 - light text */
  background: var(--background); /* #08160F - dark background */
}

.page-gdpr__card,
.page-gdpr__faq-item,
.page-gdpr__cta-section {
  background: var(--card-bg); /* #11271B - dark background */
  color: var(--text-secondary); /* #A7D9B8 - light text */
  border: 1px solid var(--border); /* #2E7A4E */
}

.page-gdpr__faq-question {
  color: var(--text-main); /* #F2FFF6 - light text */
}

.page-gdpr__btn-primary {
  color: #ffffff; /* White text for primary button */
}

.page-gdpr__btn-secondary {
  color: var(--text-main); /* Light text for secondary button */
}

.page-gdpr__text-block p, .page-gdpr__list li {
  color: var(--text-secondary);
}

.page-gdpr__text-block a {
  color: var(--glow);
}