.page-gdpr {
  background-color: #08160F;
  color: #F2FFF6;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-gdpr__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  text-align: center;
  overflow: hidden;
  background: linear-gradient(180deg, #08160F 0%, #11A84E 100%); /* Example gradient */
}

.page-gdpr__hero-image-wrapper {
  width: 100%;
  max-width: 1200px;
  margin-bottom: 20px;
}

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

.page-gdpr__hero-content {
  max-width: 900px;
  margin: 0 auto;
  z-index: 1;
  color: #F2FFF6;
}

.page-gdpr__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: #F2FFF6;
  font-size: clamp(2em, 5vw, 3.5em); /* Using clamp for responsive H1 */
}

.page-gdpr__intro-text {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #A7D9B8;
}

.page-gdpr__cta-button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

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

.page-gdpr__btn-primary:hover {
  opacity: 0.9;
}

.page-gdpr__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  color: #F2FFF6;
  background-color: #08160F;
}

.page-gdpr__section-title {
  font-size: 2.5em;
  color: #F2C14E; /* Gold color for main titles */
  margin-top: 50px;
  margin-bottom: 25px;
  text-align: center;
}

.page-gdpr__sub-title {
  font-size: 1.8em;
  color: #57E38D; /* Glow color for sub-titles */
  margin-top: 35px;
  margin-bottom: 15px;
}

.page-gdpr__paragraph {
  margin-bottom: 15px;
  color: #F2FFF6;
}

.page-gdpr__list {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #F2FFF6;
}

.page-gdpr__list-item {
  margin-bottom: 10px;
}

.page-gdpr__image-container {
  margin: 30px 0;
  text-align: center;
}

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

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

.page-gdpr__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 15px 20px;
  color: #F2FFF6;
}

.page-gdpr__faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  font-size: 1.1em;
  color: #F2FFF6;
}

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

.page-gdpr__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.page-gdpr__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 10px;
  color: #F2C14E;
}

.page-gdpr__faq-answer {
  padding-top: 15px;
  border-top: 1px solid #1E3A2A; /* Divider */
  margin-top: 15px;
  color: #A7D9B8;
}

.page-gdpr__contact-list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-gdpr__contact-item {
  margin-bottom: 10px;
  color: #F2FFF6;
}

.page-gdpr__link {
  color: #2AD16F;
  text-decoration: none;
}

.page-gdpr__link:hover {
  text-decoration: underline;
}

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

  .page-gdpr__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important; /* body handles --header-offset, small top padding */
  }

  .page-gdpr__main-title {
    font-size: clamp(1.8em, 8vw, 2.5em);
  }

  .page-gdpr__intro-text {
    font-size: 1em;
  }

  .page-gdpr__section-title {
    font-size: 2em;
  }

  .page-gdpr__sub-title {
    font-size: 1.5em;
  }

  .page-gdpr__content-area,
  .page-gdpr__hero-image-wrapper,
  .page-gdpr__image-container,
  .page-gdpr__faq-item,
  .page-gdpr__cta-button,
  .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;
    overflow: hidden !important;
  }

  .page-gdpr img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-gdpr__cta-button,
  .page-gdpr__btn-primary,
  .page-gdpr__btn-secondary,
  .page-gdpr a[class*="button"],
  .page-gdpr a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    margin-bottom: 10px; /* Add spacing between stacked buttons */
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-gdpr__cta-buttons,
  .page-gdpr__button-group,
  .page-gdpr__btn-container {
    flex-direction: column;
    gap: 10px;
  }

  .page-gdpr__faq-item {
    padding: 15px;
  }

  .page-gdpr__faq-qtext {
    font-size: 1em;
  }
}

/* Color Contrast Fixes (as per instructions) */
.page-gdpr__dark-bg {
  color: #ffffff;
  background: #11A84E;
}

.page-gdpr__light-bg {
  color: #333333;
  background: #ffffff;
}

.page-gdpr__medium-bg {
  color: #000000;
  background: #22C768;
}

.page-gdpr__content-area p,
.page-gdpr__content-area li {
  color: #F2FFF6; /* Main text color */
}

.page-gdpr__card {
  background: #11271B;
  color: #F2FFF6;
  border: 1px solid #2E7A4E;
}

.page-gdpr__dark-section {
  background: #08160F;
  color: #F2FFF6;
}