.page-gdpr {
  color: var(--text-main);
  background-color: var(--background);
  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;
  background-color: var(--deep-green);
  overflow: hidden;
}

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

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

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

.page-gdpr__main-title {
  font-weight: bold;
  color: var(--text-main);
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
  font-size: clamp(28px, 4vw, 48px);
}

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

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

.page-gdpr__section-title {
  color: var(--text-main);
  font-size: 2em;
  margin-bottom: 25px;
  text-align: center;
  font-weight: bold;
}

.page-gdpr__text-block {
  margin-bottom: 20px;
  color: var(--text-secondary);
  font-size: 1em;
}

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

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

.page-gdpr__list-item {
  margin-bottom: 10px;
  color: var(--text-secondary);
}

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

.page-gdpr__image-wrapper {
  margin: 30px auto;
  max-width: 1000px;
  text-align: center;
}

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

.page-gdpr__link {
  color: var(--gold);
  text-decoration: underline;
}

.page-gdpr__link:hover {
  color: var(--glow);
}

.page-gdpr__card-bg {
  background-color: var(--card-b-g);
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 30px;
}

.page-gdpr__dark-bg {
  background-color: var(--deep-green);
  color: var(--text-main);
}

/* FAQ Section */
.page-gdpr__faq-section {
  background-color: var(--card-b-g);
  border-radius: 8px;
  padding: 40px;
  margin-top: 40px;
}

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

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

.page-gdpr__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-weight: bold;
  color: var(--text-main);
  cursor: pointer;
  background-color: var(--deep-green);
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

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

.page-gdpr__faq-question:hover {
  background-color: var(--main-color);
}

.page-gdpr__faq-qtext {
  flex-grow: 1;
  pointer-events: none; /* Allow click on summary itself */
}

.page-gdpr__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  pointer-events: none; /* Allow click on summary itself */
}

.page-gdpr__faq-answer {
  padding: 0 25px 18px;
  color: var(--text-secondary);
  font-size: 0.95em;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-gdpr__faq-item[open] .page-gdpr__faq-answer {
  max-height: 500px; /* Sufficient height for content */
  padding-top: 10px;
}

/* CTA Section */
.page-gdpr__cta-section {
  text-align: center;
  padding: 60px 20px;
  background-color: var(--deep-green);
  border-radius: 8px;
  margin-top: 40px;
}

.page-gdpr__cta-description {
  font-size: 1.15em;
  color: var(--text-secondary);
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

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

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

.page-gdpr__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 255, 100, 0.2);
}

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

.page-gdpr__btn-secondary:hover {
  transform: translateY(-3px);
  background: var(--main-color);
  color: #ffffff;
  box-shadow: 0 8px 15px rgba(0, 255, 100, 0.2);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-gdpr__hero-section {
    padding: 40px 15px;
  }

  .page-gdpr__main-title {
    font-size: clamp(24px, 5vw, 40px);
  }

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

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

  .page-gdpr__section {
    padding: 30px 15px;
  }

  .page-gdpr__faq-section {
    padding: 30px 20px;
  }

  .page-gdpr__faq-question {
    padding: 15px 20px;
  }

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

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

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

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

  .page-gdpr__intro-description {
    font-size: 0.95em;
    margin-bottom: 20px;
  }

  .page-gdpr__section-title {
    font-size: 1.6em;
    margin-bottom: 20px;
  }

  .page-gdpr__section,
  .page-gdpr__card-bg,
  .page-gdpr__faq-section,
  .page-gdpr__cta-section {
    padding-left: 15px !important;
    padding-right: 15px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-gdpr img,
  .page-gdpr__image-content,
  .page-gdpr__hero-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-gdpr__image-wrapper,
  .page-gdpr__hero-image-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

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

  .page-gdpr__cta-button {
    max-width: 100% !important;
    width: 100% !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 15px 20px;
  }

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

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

@media (max-width: 480px) {
  .page-gdpr__main-title {
    font-size: clamp(20px, 7vw, 30px);
  }

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

  .page-gdpr__cta-button {
    font-size: 1em;
  }
}