.page-gdpr {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-main); /* Default text color for the page */
  background-color: var(--background-color); /* Inherited from shared.css */
}

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

.page-gdpr__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 0 60px 0; /* body handles padding-top, this is for visual spacing */
  background-color: var(--background-color);
  color: var(--text-main);
  overflow: hidden;
}

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

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

.page-gdpr__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-main);
  margin-bottom: 20px;
  font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive font size */
}

.page-gdpr__hero-description {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 800px;
  margin: 0 auto;
}

.page-gdpr__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--text-main);
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
  line-height: 1.3;
}

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

.page-gdpr__content-area {
  padding: 60px 20px;
}

.page-gdpr__intro-section, .page-gdpr__data-collection-section, .page-gdpr__security-section, .page-gdpr__contact-section {
  background-color: var(--background-color);
  color: var(--text-main);
}

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

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

.page-gdpr__text-secondary {
  color: var(--text-secondary);
}

.page-gdpr p {
  margin-bottom: 1.2em;
  font-size: 1.05rem;
  color: var(--text-secondary);
}

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

.page-gdpr__list li {
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.page-gdpr__list--ordered {
  list-style-type: decimal;
}

.page-gdpr__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 40px 0;
  display: block;
}

.page-gdpr__image--center {
  margin-left: auto;
  margin-right: auto;
}

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

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

/* FAQ Section */
.page-gdpr__faq-section {
  background-color: var(--card-bg);
  padding: 60px 20px;
  color: var(--text-main);
}

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

.page-gdpr__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.1rem;
  color: var(--text-main);
  background-color: var(--deep-green);
  transition: background-color 0.3s ease;
}

.page-gdpr__faq-question:hover {
  background-color: rgba(17, 168, 78, 0.2);
}

.page-gdpr__faq-question::-webkit-details-marker, /* Hide default marker for Chrome */
.page-gdpr__faq-question::marker { /* Hide default marker for Firefox */
  display: none;
}

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

.page-gdpr__faq-answer {
  padding: 0 20px 20px 20px;
  font-size: 1rem;
  color: var(--text-secondary);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-gdpr__faq-item[open] .page-gdpr__faq-answer {
  max-height: 500px; /* Sufficiently large to show content */
  padding-top: 10px;
}

.page-gdpr__faq-item[open] .page-gdpr__faq-toggle {
  content: '−';
}

/* Contrast Fixes */
.page-gdpr__contrast-fix {
  background: #ffffff !important;
  color: #333333 !important;
  border: 1px solid #e0e0e0 !important;
}

.page-gdpr__text-contrast-fix {
  color: #333333 !important;
  text-shadow: none !important;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .page-gdpr__container {
    padding: 0 15px;
  }

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

  .page-gdpr__hero-description {
    font-size: 1rem;
  }

  .page-gdpr__section-title {
    font-size: clamp(1.8rem, 7vw, 2.2rem);
    margin-bottom: 20px;
  }

  .page-gdpr__sub-title {
    font-size: clamp(1.3rem, 5vw, 1.7rem);
    margin-top: 30px;
    margin-bottom: 15px;
  }

  .page-gdpr p, .page-gdpr__list li {
    font-size: 0.95rem;
  }

  .page-gdpr__hero-section {
    padding: 10px 0 40px 0;
  }

  .page-gdpr__content-area {
    padding: 40px 15px;
  }

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

  .page-gdpr__section,
  .page-gdpr__card,
  .page-gdpr__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Video section top padding (if any) */
  .page-gdpr__video-section {
    padding-top: 10px !important; /* body handles --header-offset, this is a small visual padding */
  }

  /* Buttons responsive */
  .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;
  }

  .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;
  }
}