.page-gdpr {
  background-color: #08160F;
  color: #F2FFF6;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: 10px; /* Small top padding, body handles header offset */
}

.page-gdpr__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #1E3A2A;
}

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

.page-gdpr__hero-content {
  max-width: 900px;
  z-index: 1; /* Ensure content is above any potential background elements */
}

.page-gdpr__main-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #F2FFF6;
  margin-bottom: 20px;
  max-width: 100%;
}

.page-gdpr__description {
  font-size: 1.1em;
  color: #A7D9B8;
  margin-bottom: 30px;
}

.page-gdpr__cta-button {
  display: inline-block;
  padding: 12px 25px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
}

.page-gdpr__cta-button:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
}

.page-gdpr__section {
  padding: 50px 20px;
  max-width: 1200px;
  margin: 0 auto;
  border-bottom: 1px solid #1E3A2A;
}

.page-gdpr__section:last-of-type {
  border-bottom: none;
}

.page-gdpr__section-title {
  font-size: 2.2em;
  color: #F2C14E; /* Gold for main section titles */
  margin-bottom: 30px;
  text-align: center;
}

.page-gdpr__sub-title {
  font-size: 1.5em;
  color: #F2FFF6;
  margin-top: 25px;
  margin-bottom: 15px;
}

.page-gdpr__paragraph {
  font-size: 1em;
  color: #A7D9B8;
  margin-bottom: 20px;
}

.page-gdpr__list-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.page-gdpr__list {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1 1 calc(50% - 15px);
  min-width: 300px;
  background-color: #11271B; /* Card BG */
  border-radius: 10px;
  padding: 25px;
  border: 1px solid #2E7A4E; /* Border */
}

.page-gdpr__list-item {
  margin-bottom: 20px;
}

.page-gdpr__list-item:last-child {
  margin-bottom: 0;
}

.page-gdpr__list-heading {
  font-size: 1.2em;
  color: #F2FFF6;
  margin-bottom: 10px;
}

.page-gdpr__list-text {
  color: #A7D9B8;
}

.page-gdpr__content-block {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  margin-top: 30px;
}

.page-gdpr__image {
  flex: 1 1 45%;
  min-width: 300px;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid #2E7A4E;
  box-shadow: 0 0 20px rgba(87, 227, 141, 0.2); /* Glow */
}

.page-gdpr__image--left {
  order: 1;
}

.page-gdpr__image--right {
  order: 2;
}

.page-gdpr__text-content {
  flex: 1 1 45%;
  min-width: 300px;
}

.page-gdpr__contact-button {
  display: block;
  width: fit-content;
  margin: 30px auto 0 auto;
  padding: 12px 30px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
}

.page-gdpr__contact-button:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
}

.page-gdpr__faq-section {
  background-color: #11271B; /* Card BG */
  border-radius: 10px;
  padding: 40px;
  border: 1px solid #2E7A4E;
}

.page-gdpr__faq-item {
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid #1E3A2A; /* Divider */
}

.page-gdpr__faq-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.page-gdpr__faq-question {
  font-size: 1.3em;
  color: #F2FFF6;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-gdpr__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  color: #2AD16F;
  font-size: 1.2em;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.page-gdpr__faq-item.active .page-gdpr__faq-question::after {
  content: '-';
  transform: rotate(180deg);
}

.page-gdpr__faq-answer {
  color: #A7D9B8;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.page-gdpr__faq-item.active .page-gdpr__faq-answer {
  max-height: 200px; /* Adjust as needed */
  margin-top: 10px;
}

@media (max-width: 768px) {
  .page-gdpr__hero-section {
    padding: 30px 15px;
  }

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

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

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

  .page-gdpr__list {
    flex: 1 1 100%;
    min-width: unset;
  }

  .page-gdpr__content-block {
    flex-direction: column;
    gap: 20px;
  }

  .page-gdpr__image {
    flex: 1 1 100%;
    max-width: 100%;
    height: auto; /* Ensure responsive */
    order: unset; /* Reset order for mobile */
  }

  .page-gdpr__image--left {
    order: unset;
  }

  .page-gdpr__image--right {
    order: unset;
  }

  .page-gdpr__text-content {
    flex: 1 1 100%;
    min-width: unset;
  }

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

  /* Mobile content area image overflow fix */
  .page-gdpr img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-gdpr__section {
    padding: 30px 15px;
  }

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

  .page-gdpr__sub-title {
    font-size: 1.3em;
  }

  .page-gdpr__list {
    padding: 20px;
  }
}