/* style/gdpr.css */
.page-gdpr {
  background-color: #08160F; /* Custom Background */
  color: #F2FFF6; /* Custom Text Main */
  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 */
  box-sizing: border-box;
}

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

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

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

.page-gdpr__main-title {
  font-size: clamp(2em, 3.5vw, 3.2em);
  font-weight: 700;
  line-height: 1.2;
  color: #F2FFF6; /* Custom Text Main */
  margin-bottom: 20px;
}

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

.page-gdpr__btn-primary {
  display: inline-block;
  padding: 12px 28px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Custom Button */
  color: #ffffff; /* White text for contrast */
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-gdpr__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
}

.page-gdpr__section {
  padding: 60px 20px;
  box-sizing: border-box;
}

.page-gdpr__dark-section {
  background-color: #11271B; /* Custom Card BG, for dark sections */
}

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

.page-gdpr__section-title {
  font-size: clamp(1.8em, 3vw, 2.5em);
  font-weight: 700;
  color: #F2FFF6; /* Custom Text Main */
  text-align: center;
  margin-bottom: 40px;
}

.page-gdpr__subsection-title {
  font-size: clamp(1.4em, 2.5vw, 1.8em);
  font-weight: 600;
  color: #22C768; /* Auxiliary color */
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-gdpr__text-block {
  font-size: 1em;
  color: #A7D9B8; /* Custom Text Secondary */
  margin-bottom: 15px;
}

.page-gdpr__text-block a {
  color: #57E38D; /* Custom Glow for links */
  text-decoration: underline;
}

.page-gdpr__text-block a:hover {
  color: #2AD16F;
}

.page-gdpr__image-and-text {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
}

.page-gdpr__image-and-text--reverse {
  flex-direction: row-reverse;
}

.page-gdpr__image-and-text .page-gdpr__content-image {
  flex: 1 1 400px;
  max-width: 50%;
  height: auto;
  display: block;
  border-radius: 8px;
  min-width: 200px;
}

.page-gdpr__image-and-text .page-gdpr__text-content {
  flex: 1 1 400px;
  max-width: 50%;
}

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

.page-gdpr__faq-item {
  background-color: #11271B; /* Custom Card BG */
  border: 1px solid #2E7A4E; /* Custom Border */
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px;
  transition: all 0.3s ease;
}

.page-gdpr__faq-item[open] {
  background-color: #0A4B2C; /* Custom Deep Green for open FAQ */
}

.page-gdpr__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.2em;
  font-weight: 600;
  color: #F2FFF6; /* Custom Text Main */
  cursor: pointer;
  list-style: none;
  padding-right: 10px;
}

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

.page-gdpr__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: #57E38D; /* Custom Glow */
  transition: transform 0.3s ease;
}

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

.page-gdpr__faq-answer {
  padding-top: 15px;
  font-size: 1em;
  color: #A7D9B8; /* Custom Text Secondary */
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-gdpr__image-and-text .page-gdpr__content-image,
  .page-gdpr__image-and-text .page-gdpr__text-content {
    max-width: 100%;
    flex: 1 1 100%;
  }

  .page-gdpr__image-and-text--reverse {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important; /* body handles --header-offset, this is small decorative top padding */
  }

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

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

  .page-gdpr__btn-primary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 15px;
  }

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

  .page-gdpr__section-title {
    font-size: clamp(1.6em, 6vw, 2.2em);
  }

  .page-gdpr__subsection-title {
    font-size: clamp(1.2em, 5vw, 1.6em);
  }

  /* Images responsiveness */
  .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,
  .page-gdpr__image-and-text,
  .page-gdpr__hero-image-wrapper,
  .page-gdpr__hero-content {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
  }
  
  .page-gdpr__container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  
  .page-gdpr__image-and-text {
    gap: 20px;
  }

  .page-gdpr__image-and-text .page-gdpr__content-image,
  .page-gdpr__image-and-text .page-gdpr__text-content {
    min-width: unset;
  }

  .page-gdpr__faq-question {
    font-size: 1.1em;
  }

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