.page-gdpr {
  background-color: #08160F; /* Background */
  color: #F2FFF6; /* Text Main */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  font-size: 1rem;
}

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

.page-gdpr__hero-section {
  position: relative;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: #F2FFF6;
}

.page-gdpr__hero-image-container {
  width: 100%;
  max-height: 700px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.page-gdpr__hero-content {
  position: relative; /* Ensure content is above image but not overlapping */
  max-width: 900px;
  margin-top: 40px;
  padding: 0 20px;
  z-index: 10;
}

.page-gdpr__main-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem); /* Responsive font size */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #F2C14E; /* Gold */
}

.page-gdpr__intro-text {
  font-size: 1.15rem;
  margin-bottom: 30px;
  color: #A7D9B8; /* Text Secondary */
}

.page-gdpr__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #F2FFF6; /* Text Main */
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-gdpr__cta-button:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-gdpr__content-section {
  padding: 60px 0;
}

.page-gdpr__section-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: #F2C14E; /* Gold */
  text-align: center;
  margin-bottom: 40px;
  font-weight: 600;
}

.page-gdpr__article-content {
  font-size: 1rem;
  line-height: 1.7;
  color: #F2FFF6; /* Text Main */
}

.page-gdpr__article-content h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  color: #2AD16F; /* Brighter green for sub-titles */
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-gdpr__article-content p {
  margin-bottom: 1em;
}

.page-gdpr__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 1em;
  color: #A7D9B8; /* Text Secondary */
}

.page-gdpr__list li {
  margin-bottom: 0.5em;
}

.page-gdpr__list--grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  list-style: none;
  margin-left: 0;
  padding-left: 0;
}

.page-gdpr__list--grid li {
  background-color: #11271B; /* Card BG */
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #2E7A4E; /* Border */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  color: #F2FFF6; /* Text Main */
  font-weight: 500;
}

.page-gdpr__image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 30px 0;
  display: block;
  object-fit: cover;
}

.page-gdpr__image--right {
  float: right;
  margin-left: 30px;
  max-width: 400px;
}

.page-gdpr__image--left {
  float: left;
  margin-right: 30px;
  max-width: 400px;
}

.page-gdpr__contact-info a {
  color: #2AD16F; /* Brighter green for links */
  text-decoration: underline;
}

.page-gdpr__contact-info a:hover {
  color: #57E38D; /* Glow */
}

.page-gdpr__faq-section {
  padding: 60px 0;
}

.page-gdpr__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

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

.page-gdpr__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1rem;
  background-color: #0A4B2C; /* Deep Green */
  color: #F2FFF6; /* Text Main */
  list-style: none; /* For details/summary */
}

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

.page-gdpr__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-gdpr__faq-item[open] .page-gdpr__faq-toggle {
  transform: rotate(45deg);
}

.page-gdpr__faq-answer {
  padding: 15px 25px;
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
  border-top: 1px solid #1E3A2A; /* Divider */
}

.page-gdpr__cta-banner-section {
  background-color: #0A4B2C; /* Deep Green */
  padding: 80px 0;
  text-align: center;
  color: #F2FFF6;
}

.page-gdpr__cta-flex-container {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.page-gdpr__cta-image {
  max-width: 500px;
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

.page-gdpr__cta-content {
  max-width: 600px;
  text-align: left;
}

.page-gdpr__cta-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: #F2C14E; /* Gold */
  margin-bottom: 20px;
  font-weight: 700;
}

.page-gdpr__cta-description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #A7D9B8; /* Text Secondary */
}

.page-gdpr__cta-button--large {
  padding: 18px 35px;
  font-size: 1.2rem;
  min-width: 250px;
}

/* Link styles within content */
.page-gdpr__article-content a {
  color: #2AD16F; /* Brighter green for links */
  text-decoration: underline;
}

.page-gdpr__article-content a:hover {
  color: #57E38D; /* Glow */
}

/* Ensure color contrast for dark backgrounds */
.page-gdpr__dark-bg {
  background-color: #08160F;
  color: #F2FFF6;
}

.page-gdpr__light-bg {
  background-color: #0A4B2C; /* Using Deep Green for contrast */
  color: #F2FFF6;
}

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

  .page-gdpr__container,
  .page-gdpr__hero-content,
  .page-gdpr__faq-list,
  .page-gdpr__cta-flex-container {
    padding-left: 15px !important;
    padding-right: 15px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-gdpr__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
  }

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

  .page-gdpr__intro-text,
  .page-gdpr__article-content p,
  .page-gdpr__list li,
  .page-gdpr__faq-answer {
    font-size: 1rem;
  }

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

  .page-gdpr__article-content h3 {
    font-size: clamp(1.1rem, 6vw, 1.4rem);
  }

  .page-gdpr__list--grid {
    grid-template-columns: 1fr;
  }

  .page-gdpr__image,
  .page-gdpr__hero-image,
  .page-gdpr__cta-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    float: none;
    margin: 20px 0;
  }

  .page-gdpr__cta-flex-container {
    flex-direction: column;
    gap: 30px;
  }

  .page-gdpr__cta-content {
    text-align: center;
  }

  .page-gdpr__cta-button,
  .page-gdpr__cta-button--large {
    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__hero-image-container {
    max-height: 400px;
  }
}