.page-gdpr {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-main, #F2FFF6); /* Default text color for the page */
  background-color: var(--background-color, #08160F); /* Default background color for the page */
}

.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;
  background-color: var(--background-color, #08160F);
  color: var(--text-main, #F2FFF6);
}

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

.page-gdpr__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.page-gdpr__hero-content {
  max-width: 900px;
}

.page-gdpr__hero-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-main, #F2FFF6);
  margin-bottom: 20px;
}

.page-gdpr__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: var(--text-secondary, #A7D9B8);
}

.page-gdpr__section {
  padding: 40px 20px;
}

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

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

.page-gdpr__card-bg {
  background-color: var(--card-bg, #11271B);
}

.page-gdpr__dark-bg {
  background-color: var(--background-color, #08160F);
  color: var(--text-main, #F2FFF6);
}

.page-gdpr__dark-section {
  background-color: var(--deep-green, #0A4B2C);
  color: var(--text-main, #F2FFF6);
}

.page-gdpr__heading {
  font-size: 2.2em;
  font-weight: bold;
  color: #333333;
  margin-bottom: 30px;
  text-align: center;
}

.page-gdpr__dark-bg .page-gdpr__heading, 
.page-gdpr__card-bg .page-gdpr__heading, 
.page-gdpr__dark-section .page-gdpr__heading {
  color: var(--text-main, #F2FFF6);
}

.page-gdpr__sub-heading {
  font-size: 1.5em;
  font-weight: bold;
  color: #11A84E;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-gdpr__dark-bg .page-gdpr__sub-heading, 
.page-gdpr__card-bg .page-gdpr__sub-heading, 
.page-gdpr__dark-section .page-gdpr__sub-heading {
  color: var(--glow, #57E38D);
}

.page-gdpr__text-block p {
  margin-bottom: 1em;
  color: #333333;
}

.page-gdpr__dark-bg .page-gdpr__text-block p, 
.page-gdpr__card-bg .page-gdpr__text-block p, 
.page-gdpr__dark-section .page-gdpr__text-block p {
  color: var(--text-secondary, #A7D9B8);
}

.page-gdpr__image-content {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Buttons */
.page-gdpr__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.page-gdpr__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: var(--text-main, #F2FFF6);
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-gdpr__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

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

.page-gdpr__faq-item {
  background-color: var(--card-bg, #11271B);
  border: 1px solid var(--border-color, #2E7A4E);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-gdpr__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.1em;
  color: var(--text-main, #F2FFF6);
  background-color: var(--deep-green, #0A4B2C);
  border-bottom: 1px solid var(--divider-color, #1E3A2A);
  list-style: none;
}

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

.page-gdpr__faq-qtext {
  flex-grow: 1;
  color: var(--text-main, #F2FFF6);
}

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

.page-gdpr__faq-answer {
  padding: 20px;
  color: var(--text-secondary, #A7D9B8);
  background-color: var(--card-bg, #11271B);
  font-size: 0.95em;
}

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

.page-gdpr__cta-section {
  text-align: center;
  background-color: var(--background-color, #08160F);
  color: var(--text-main, #F2FFF6);
  padding: 50px 20px;
}

.page-gdpr__cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.page-gdpr__cta-text {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: var(--text-secondary, #A7D9B8);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-gdpr__hero-title {
    font-size: 2.5em;
  }
  .page-gdpr__heading {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-gdpr {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-gdpr__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important;
  }
  .page-gdpr__hero-title {
    font-size: 2em;
  }
  .page-gdpr__hero-description {
    font-size: 1em;
  }
  .page-gdpr__section {
    padding: 30px 15px;
  }
  .page-gdpr__heading {
    font-size: 1.8em;
    margin-bottom: 20px;
  }
  .page-gdpr__sub-heading {
    font-size: 1.3em;
    margin-top: 25px;
    margin-bottom: 10px;
  }
  .page-gdpr__image-content {
    margin: 20px auto;
  }
  .page-gdpr__cta-text {
    font-size: 1.1em;
  }

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

  /* Mobile responsive containers */
  .page-gdpr__section,
  .page-gdpr__card,
  .page-gdpr__container,
  .page-gdpr__hero-section,
  .page-gdpr__hero-image-wrapper,
  .page-gdpr__hero-content,
  .page-gdpr__content-area,
  .page-gdpr__text-block,
  .page-gdpr__faq-list,
  .page-gdpr__faq-item,
  .page-gdpr__cta-section,
  .page-gdpr__cta-content {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden !important;
  }

  /* Mobile responsive buttons */
  .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;
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 10px;
  }

  .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;
  }
  .page-gdpr__cta-buttons {
    display: flex;
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .page-gdpr__hero-title {
    font-size: 1.8em;
  }
  .page-gdpr__heading {
    font-size: 1.5em;
  }
  .page-gdpr__sub-heading {
    font-size: 1.1em;
  }
  .page-gdpr__cta-button {
    padding: 12px 20px;
    font-size: 1em;
  }
}