/* style/gdpr.css */
.page-gdpr {
  color: #333333; /* Default text color for light body background */
  background-color: #f9f9f9;
  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;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  overflow: hidden;
  box-sizing: border-box;
}

.page-gdpr__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-gdpr__hero-content {
  position: relative;
  z-index: 2;
  color: #F2FFF6; /* Main text color for dark sections */
  max-width: 900px;
  background-color: rgba(0, 0, 0, 0.4); /* Semi-transparent overlay for readability */
  padding: 30px;
  border-radius: 10px;
}

.page-gdpr__main-title {
  font-size: clamp(2em, 5vw, 3.5em);
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #F2C14E; /* Gold color for main title */
}

.page-gdpr__subtitle {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #A7D9B8; /* Secondary text color */
}

.page-gdpr__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.page-gdpr__btn-primary,
.page-gdpr__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-gdpr__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff; /* White text for primary button */
  border: none;
}

.page-gdpr__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-gdpr__btn-secondary {
  background: #0A4B2C; /* Deep Green background */
  color: #F2FFF6; /* Main text color for secondary button */
  border: 2px solid #2E7A4E; /* Border color */
}

.page-gdpr__btn-secondary:hover {
  background: #11A84E; /* Main brand color on hover */
  color: #ffffff;
  transform: translateY(-2px);
}

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

.page-gdpr__dark-section {
  background-color: #08160F; /* Background color */
  color: #F2FFF6; /* Main text color */
}

.page-gdpr__dark-section .page-gdpr__section-title {
  color: #F2C14E; /* Gold color for titles in dark sections */
}

.page-gdpr__dark-section .page-gdpr__text-block {
  color: #A7D9B8; /* Secondary text color */
}

.page-gdpr__dark-section .page-gdpr__list-item strong {
  color: #F2FFF6;
}

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

.page-gdpr__section-title {
  font-size: 2.5em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: #11A84E; /* Main brand color for titles */
}

.page-gdpr__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-gdpr__image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-gdpr__list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-gdpr__list-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
  font-size: 1.05em;
  line-height: 1.5;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  color: #333333;
}

.page-gdpr__dark-section .page-gdpr__list-item {
  background-color: #11271B; /* Card BG color */
  border-color: #2E7A4E; /* Border color */
  color: #F2FFF6; /* Main text color */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-gdpr__list-item strong {
  color: #11A84E; /* Main brand color for strong text */
}

.page-gdpr__dark-section .page-gdpr__list-item strong {
  color: #F2C14E; /* Gold for strong text in dark sections */
}

.page-gdpr__numbered-list {
  list-style: decimal;
  padding-left: 20px;
  margin-bottom: 30px;
}

.page-gdpr__numbered-list .page-gdpr__list-item {
  background-color: #f0f0f0;
  border: 1px solid #d0d0d0;
  margin-left: 20px;
}

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

.page-gdpr__faq-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-gdpr__faq-item details {
  width: 100%;
}

.page-gdpr__faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-weight: bold;
  font-size: 1.1em;
  cursor: pointer;
  color: #11A84E; /* Main brand color for FAQ questions */
  list-style: none;
}

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

.page-gdpr__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.page-gdpr__faq-toggle {
  font-size: 1.5em;
  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: 0 20px 20px 20px;
  font-size: 1em;
  color: #333333;
}

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

.page-gdpr__dark-section .page-gdpr__faq-item {
  background-color: #11271B; /* Card BG color */
  border-color: #2E7A4E; /* Border color */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-gdpr__dark-section .page-gdpr__faq-item summary {
  color: #F2C14E; /* Gold color for FAQ questions in dark sections */
}

.page-gdpr__dark-section .page-gdpr__faq-answer {
  color: #A7D9B8; /* Secondary text color for FAQ answers in dark sections */
}

.page-gdpr a {
  color: #11A84E;
  text-decoration: underline;
}

.page-gdpr a:hover {
  color: #22C768;
}

/* Responsive styles */
@media (max-width: 768px) {
  .page-gdpr__hero-section {
    padding: 40px 15px;
  }

  .page-gdpr__hero-content {
    padding: 20px;
  }

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

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

  .page-gdpr__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-gdpr__btn-primary,
  .page-gdpr__btn-secondary {
    width: 100% !important;
    padding: 12px 20px;
    font-size: 0.9em;
  }

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

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

  .page-gdpr__text-block,
  .page-gdpr__list-item,
  .page-gdpr__faq-answer {
    font-size: 0.95em;
  }

  .page-gdpr__image {
    margin: 30px auto;
  }

  /* Mobile image and video responsive adaptation */
  .page-gdpr img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

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

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