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

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

.page-gdpr__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background: linear-gradient(180deg, #11A84E 0%, #0A4B2C 100%); /* Deep Green to Main Color */
  color: #F2FFF6;
}

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

.page-gdpr__main-title {
  font-size: 2.8em;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 15px;
  color: #F2FFF6;
}

.page-gdpr__description {
  font-size: 1.2em;
  margin-bottom: 20px;
  color: #A7D9B8; /* Text Secondary */
}

.page-gdpr__hero-image {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

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

.page-gdpr__sub-title {
  font-size: 1.8em;
  font-weight: bold;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #22C768; /* Auxiliary color */
}

.page-gdpr__list,
.page-gdpr__principles-list,
.page-gdpr__rights-list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-gdpr__list li,
.page-gdpr__principles-item,
.page-gdpr__rights-item {
  background-color: #11271B; /* Card BG */
  border-left: 5px solid #11A84E; /* Main color */
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  color: #F2FFF6; /* Text Main */
}

.page-gdpr__principles-title,
.page-gdpr__rights-title {
  font-size: 1.4em;
  color: #F2C14E; /* Gold */
  margin-bottom: 10px;
}

.page-gdpr__list li strong {
  color: #22C768; /* Auxiliary color */
}

.page-gdpr__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

.page-gdpr__light-bg {
  background-color: #ffffff;
  color: #333333; /* Dark text for light background */
}

.page-gdpr__light-bg .page-gdpr__section-title,
.page-gdpr__light-bg .page-gdpr__sub-title {
  color: #11A84E; /* Main color for titles on light background */
}

.page-gdpr__light-bg .page-gdpr__list li,
.page-gdpr__light-bg .page-gdpr__principles-item,
.page-gdpr__light-bg .page-gdpr__rights-item {
  background-color: #f8f8f8;
  color: #333333;
  border-left-color: #22C768; /* Auxiliary color for border */
}

.page-gdpr__light-bg .page-gdpr__principles-title,
.page-gdpr__light-bg .page-gdpr__rights-title {
  color: #11A84E;
}

.page-gdpr__light-bg .page-gdpr__list li strong {
  color: #0A4B2C; /* Deep Green for strong text */
}

.page-gdpr__dark-section {
  background-color: #0A4B2C; /* Deep Green */
  color: #F2FFF6; /* Text Main */
}

.page-gdpr__dark-section .page-gdpr__section-title {
  color: #F2C14E; /* Gold */
}

.page-gdpr__card-bg {
  background-color: #11271B; /* Card BG */
  color: #F2FFF6; /* Text Main */
}

.page-gdpr__card-bg .page-gdpr__section-title {
  color: #F2C14E; /* Gold */
}

.page-gdpr__link {
  color: #22C768; /* Auxiliary color for links */
  text-decoration: underline;
}

.page-gdpr__link:hover {
  color: #57E38D; /* Glow color on hover */
  text-decoration: none;
}

.page-gdpr__contact-info {
  margin-top: 20px;
  padding: 20px;
  background-color: #11271B; /* Card BG */
  border-radius: 8px;
  border: 1px solid #2E7A4E; /* Border color */
  color: #F2FFF6;
}

.page-gdpr__contact-detail strong {
  color: #F2C14E; /* Gold */
}

/* FAQ Section */
.page-gdpr__faq-list {
  margin-top: 30px;
}

.page-gdpr__faq-item {
  background-color: #0A4B2C; /* Deep Green */
  margin-bottom: 10px;
  border-radius: 8px;
  border: 1px solid #2E7A4E; /* Border color */
  overflow: hidden;
  color: #F2FFF6;
}

.page-gdpr__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background-color: #11A84E; /* Main color */
  cursor: pointer;
  font-weight: bold;
  font-size: 1.1em;
  color: #F2FFF6;
  list-style: none;
}

.page-gdpr__faq-item[open] > .page-gdpr__faq-question {
  background-color: #22C768; /* Auxiliary color when open */
  color: #0A4B2C; /* Deep Green text for contrast */
}

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

.page-gdpr__faq-qtext {
  flex-grow: 1;
}

.page-gdpr__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 10px;
  color: #F2FFF6;
}

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

.page-gdpr__faq-answer {
  padding: 15px 20px;
  background-color: #11271B; /* Card BG */
  color: #A7D9B8; /* Text Secondary */
  font-size: 0.95em;
}

.page-gdpr__faq-answer p {
  margin-bottom: 0;
}

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

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

  .page-gdpr__main-title {
    font-size: 2em;
  }

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

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

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

  .page-gdpr__list li,
  .page-gdpr__principles-item,
  .page-gdpr__rights-item {
    padding: 15px;
  }

  .page-gdpr__principles-title,
  .page-gdpr__rights-title {
    font-size: 1.2em;
  }

  /* Force responsive for all images */
  .page-gdpr img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    box-sizing: border-box !important;
  }
  
  /* Ensure containers with images are responsive */
  .page-gdpr__hero-section,
  .page-gdpr__introduction-section,
  .page-gdpr__data-principles-section,
  .page-gdpr__data-types-usage-section,
  .page-gdpr__user-rights-section,
  .page-gdpr__data-security-section,
  .page-gdpr__data-retention-section,
  .page-gdpr__international-transfer-section,
  .page-gdpr__cookies-section,
  .page-gdpr__contact-section,
  .page-gdpr__faq-section,
  .page-gdpr__commitment-section,
  .page-gdpr__container,
  .page-gdpr__contact-info,
  .page-gdpr__faq-list,
  .page-gdpr__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-gdpr__hero-section,
  .page-gdpr__dark-section {
    padding-left: 0;
    padding-right: 0;
  }
  
  .page-gdpr__light-bg,
  .page-gdpr__card-bg {
    padding-left: 0;
    padding-right: 0;
  }
  
  .page-gdpr__hero-image {
    padding-left: 15px;
    padding-right: 15px;
  }
}