:root {
  --primary-color: #11A84E;
  --secondary-color: #22C768;
  --page-card-bg: #11271B;
  --page-background: #08160F;
  --page-text-main: #F2FFF6;
  --page-text-secondary: #A7D9B8;
  --border-color: #2E7A4E;
  --glow-color: #57E38D;
  --gold-color: #F2C14E;
  --divider-color: #1E3A2A;
  --deep-green-color: #0A4B2C;
}

.page-gdpr {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--page-text-main, #F2FFF6); /* Default to light text for dark background */
  background-color: var(--page-background, #08160F); /* Dark background */
  padding-bottom: 50px; /* Add some padding at the bottom */
}

/* Hero Section */
.page-gdpr__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--page-text-main, #F2FFF6);
  padding: 0 20px 40px; /* Adjust padding, image is above text */
  box-sizing: border-box;
}

.page-gdpr__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px; /* Space between image and text */
}

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

.page-gdpr__hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.page-gdpr__main-title {
  font-size: clamp(2em, 4vw, 3.2em); /* Responsive font size */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--page-text-main, #F2FFF6);
}

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

/* General Section Styling */
.page-gdpr__section {
  padding: 50px 0;
  background-color: var(--page-background, #08160F);
  color: var(--page-text-main, #F2FFF6);
}

.page-gdpr__introduction-section,
.page-gdpr__data-collection-section,
.page-gdpr__security-measures-section,
.page-gdpr__contact-section,
.page-gdpr__call-to-action-section {
  background-color: var(--page-card-bg, #11271B); /* Use Card BG for content sections */
  border-radius: 8px;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-gdpr__rights-section,
.page-gdpr__faq-section {
    background-color: var(--page-background, #08160F);
}


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

.page-gdpr__section-title {
  font-size: clamp(1.8em, 3vw, 2.5em);
  font-weight: 600;
  margin-bottom: 30px;
  text-align: center;
  color: var(--page-text-main, #F2FFF6);
}

.page-gdpr__sub-title {
  font-size: clamp(1.3em, 2.5vw, 1.8em);
  font-weight: 500;
  margin-top: 25px;
  margin-bottom: 15px;
  color: var(--page-text-main, #F2FFF6);
}

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

.page-gdpr__list-item {
  margin-bottom: 10px;
  color: var(--page-text-secondary, #A7D9B8);
  list-style-type: disc;
  margin-left: 20px;
}

/* Image within content sections */
.page-gdpr__image-wrapper {
  margin: 30px auto;
  max-width: 100%;
  display: flex;
  justify-content: center;
}

.page-gdpr__content-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
  max-width: 800px; /* Default max-width for content images */
  min-width: 200px; /* Enforce min-width */
}

/* Buttons */
.page-gdpr__btn-primary,
.page-gdpr__btn-secondary {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  box-sizing: border-box;
  text-align: center;
  white-space: normal;
  word-wrap: break-word;
}

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

.page-gdpr__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
  box-shadow: 0 7px 20px rgba(0, 0, 0, 0.4);
}

.page-gdpr__btn-secondary {
  background-color: transparent;
  color: var(--primary-color, #11A84E);
  border: 2px solid var(--border-color, #2E7A4E);
}

.page-gdpr__btn-secondary:hover {
  background-color: var(--border-color, #2E7A4E);
  color: #F2FFF6;
  transform: translateY(-2px);
}

.page-gdpr__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 40px;
  flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

/* Contact Link */
.page-gdpr__contact-link {
  color: var(--gold-color, #F2C14E);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-gdpr__contact-link:hover {
  color: var(--glow-color, #57E38D);
}

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

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

.page-gdpr__faq-item summary {
  list-style: none; /* Hide default marker */
  cursor: pointer;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--page-text-main, #F2FFF6);
  transition: background-color 0.3s ease;
}

.page-gdpr__faq-item summary::-webkit-details-marker {
  display: none; /* Hide default marker for webkit */
}

.page-gdpr__faq-item summary:hover {
  background-color: rgba(46, 122, 78, 0.2); /* Light hover effect */
}

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

.page-gdpr__faq-toggle {
  font-size: 1.5em;
  margin-left: 15px;
  color: var(--primary-color, #11A84E);
}

.page-gdpr__faq-item[open] .page-gdpr__faq-toggle {
  content: '−'; /* Change to minus when open */
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .page-gdpr__main-title {
    font-size: clamp(2em, 5vw, 3em);
  }
  .page-gdpr__section-title {
    font-size: clamp(1.8em, 4vw, 2.2em);
  }
}

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

  .page-gdpr__hero-section {
    padding: 0 15px 30px;
  }

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

  .page-gdpr__container {
    padding: 0 15px;
  }

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

  .page-gdpr__description {
    font-size: 1em;
  }

  .page-gdpr__section-title {
    font-size: clamp(1.5em, 5vw, 2em);
  }

  .page-gdpr__sub-title {
    font-size: clamp(1.2em, 4vw, 1.5em);
  }

  .page-gdpr__btn-primary,
  .page-gdpr__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    padding: 12px 20px;
    margin: 0;
  }

  .page-gdpr__cta-buttons {
    flex-direction: column;
    gap: 10px;
    padding: 0 15px;
  }

  .page-gdpr__image-wrapper {
    padding: 0 15px;
  }

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

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

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

  /* Ensure all containers have proper mobile width */
  .page-gdpr__section,
  .page-gdpr__card,
  .page-gdpr__container,
  .page-gdpr__hero-image-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Specific padding for sections that might need it */
  .page-gdpr__introduction-section,
  .page-gdpr__data-collection-section,
  .page-gdpr__security-measures-section,
  .page-gdpr__contact-section,
  .page-gdpr__call-to-action-section {
    padding-left: 15px;
    padding-right: 15px;
  }
}