.page-gdpr {
  color: #333333; /* Default text color for light body background */
  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: 0;
  margin-bottom: 40px;
  overflow: hidden;
}

.page-gdpr__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  max-height: 500px;
}

.page-gdpr__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 900px;
  padding: 20px;
  color: #F2FFF6; /* Light text for hero overlay */
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay for readability */
  border-radius: 8px;
}

.page-gdpr__main-title {
  font-size: clamp(2em, 4vw, 3.5em);
  font-weight: bold;
  margin-bottom: 15px;
  line-height: 1.2;
  color: #F2FFF6;
}

.page-gdpr__description {
  font-size: clamp(1em, 2vw, 1.2em);
  margin-bottom: 25px;
  color: #A7D9B8;
}

.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: 5px;
  font-weight: bold;
  transition: background 0.3s ease;
  border: none;
  cursor: pointer;
}

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

.page-gdpr__cta-button--secondary {
  background: #11271B;
  color: #A7D9B8;
  border: 1px solid #2E7A4E;
}

.page-gdpr__cta-button--secondary:hover {
  background: #2E7A4E;
  color: #F2FFF6;
}

.page-gdpr__section {
  max-width: 1200px;
  margin: 0 auto 60px auto;
  padding: 40px 20px;
  background: #ffffff; /* Light background for sections by default */
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-gdpr__dark-section {
  background: #11271B; /* Card B G */
  color: #F2FFF6; /* Text Main */
}

.page-gdpr__dark-section .page-gdpr__section-title,
.page-gdpr__dark-section .page-gdpr__sub-title {
  color: #F2FFF6;
}

.page-gdpr__section-title {
  font-size: clamp(1.8em, 3vw, 2.5em);
  color: #11A84E; /* Main brand color */
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
}

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

.page-gdpr p {
  margin-bottom: 15px;
  color: #333333;
}

.page-gdpr__list {
  list-style: disc inside;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #333333;
}

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

.page-gdpr__content-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 30px;
  margin-top: 30px;
}

.page-gdpr__content-wrapper--reverse {
  flex-direction: row-reverse;
}

.page-gdpr__image {
  flex: 1 1 400px;
  max-width: 50%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-gdpr__image--left {
  order: -1; /* For left alignment in default flex-direction */
}

.page-gdpr__text-block {
  flex: 1 1 500px;
}

.page-gdpr__contact-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
  margin-bottom: 20px;
}

.page-gdpr__contact-item {
  margin-bottom: 10px;
  font-size: 1.1em;
  color: #333333;
}

.page-gdpr__contact-item strong {
  color: #11A84E;
}

.page-gdpr__contact-item a {
  color: #22C768;
  text-decoration: none;
}

.page-gdpr__contact-item a:hover {
  text-decoration: underline;
}

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

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

.page-gdpr__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  font-weight: bold;
  cursor: pointer;
  background: #E8F8EE; /* Lighter shade of brand color */
  color: #11A84E;
  font-size: 1.1em;
}

.page-gdpr__faq-question:hover {
  background: #D9F0E0;
}

.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: 15px 20px;
  background: #ffffff;
  border-top: 1px solid #2E7A4E;
  color: #333333;
}

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

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-gdpr__hero-content {
    max-width: 700px;
    padding: 15px;
  }
  .page-gdpr__main-title {
    font-size: clamp(1.8em, 3.5vw, 3em);
  }
  .page-gdpr__description {
    font-size: clamp(0.9em, 1.8vw, 1.1em);
  }
  .page-gdpr__image {
    max-width: 45%;
  }
}

@media (max-width: 768px) {
  .page-gdpr {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-gdpr__hero-section {
    margin-bottom: 30px;
  }
  .page-gdpr__hero-content {
    position: static;
    transform: none;
    background: #08160F; /* Deep Green background for mobile hero content */
    color: #F2FFF6;
    padding: 25px 15px;
    width: 100%;
    box-sizing: border-box;
    border-radius: 0;
  }
  .page-gdpr__hero-image {
    display: none; /* Hide hero image on mobile to prioritize content */
  }
  .page-gdpr__main-title {
    font-size: 2em !important;
    margin-bottom: 10px;
    color: #F2FFF6;
  }
  .page-gdpr__description {
    font-size: 1em !important;
    margin-bottom: 20px;
    color: #A7D9B8;
  }
  .page-gdpr__section {
    margin-bottom: 40px;
    padding: 30px 15px;
    box-shadow: none;
    border-radius: 0;
  }
  .page-gdpr__section-title {
    font-size: 1.8em !important;
    margin-bottom: 25px;
  }
  .page-gdpr__sub-title {
    font-size: 1.4em !important;
    margin-top: 25px;
    margin-bottom: 10px;
  }
  .page-gdpr__content-wrapper,
  .page-gdpr__content-wrapper--reverse {
    flex-direction: column;
    gap: 20px;
  }
  .page-gdpr__image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    order: initial; /* Reset order for mobile */
  }
  .page-gdpr__text-block {
    flex: 1 1 100%;
  }
  .page-gdpr__list {
    margin-left: 15px;
  }
  .page-gdpr__faq-question {
    font-size: 1em;
    padding: 12px 15px;
  }
  .page-gdpr__faq-answer {
    padding: 12px 15px;
  }
  /* Button responsive */
  .page-gdpr__cta-button,
  .page-gdpr__btn-primary,
  .page-gdpr__btn-secondary,
  .page-gdpr a[class*="button"],
  .page-gdpr a[class*="btn"] {
    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__cta-buttons {
    display: flex;
    flex-direction: column;
  }
}