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

.page-gdpr__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding as body handles header offset */
  overflow: hidden;
}

.page-gdpr__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.page-gdpr__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5); /* Darken image for text readability */
}

.page-gdpr__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  color: #F2FFF6;
}

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

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

.page-gdpr__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: background-color 0.3s ease, transform 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
}

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

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

.page-gdpr__section {
  padding: 80px 20px;
  border-bottom: 1px solid #1E3A2A; /* Divider */
}

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

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

.page-gdpr__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: #57E38D; /* Glow */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

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

.page-gdpr__text-block {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #A7D9B8;
}

.page-gdpr__text-block--center {
  text-align: center;
}

.page-gdpr__grid-3-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-gdpr__grid-2-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-gdpr__card {
  background-color: #11271B; /* Card BG */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.page-gdpr__card-image {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
  margin-bottom: 20px;
}

.page-gdpr__card-title {
  font-size: 1.3rem;
  color: #F2FFF6;
  margin-bottom: 15px;
}

.page-gdpr__card p {
  color: #A7D9B8;
  font-size: 0.95rem;
}

.page-gdpr__data-item ul,
.page-gdpr__usage-item ul,
.page-gdpr__measure-item ul,
.page-gdpr__list-rights,
.page-gdpr__list-sharing,
.page-gdpr__list-cookies,
.page-gdpr__contact-list {
  list-style: none;
  padding: 0;
  margin-top: 15px;
}

.page-gdpr__data-item li,
.page-gdpr__usage-item li,
.page-gdpr__measure-item li,
.page-gdpr__list-rights li,
.page-gdpr__list-sharing li,
.page-gdpr__list-cookies li,
.page-gdpr__contact-list li {
  margin-bottom: 10px;
  color: #A7D9B8;
  font-size: 1rem;
  position: relative;
  padding-left: 25px;
}

.page-gdpr__data-item li::before,
.page-gdpr__usage-item li::before,
.page-gdpr__measure-item li::before,
.page-gdpr__list-rights li::before,
.page-gdpr__list-sharing li::before,
.page-gdpr__list-cookies li::before,
.page-gdpr__contact-list li::before {
  content: '✔';
  color: #2AD16F; /* A brighter green checkmark */
  position: absolute;
  left: 0;
  top: 0;
}

.page-gdpr__list-rights li strong {
  color: #F2FFF6;
}

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

.page-gdpr__link {
  color: #57E38D;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-gdpr__link:hover {
  color: #2AD16F;
  text-decoration: underline;
}

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

.page-gdpr__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-gdpr__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  color: #F2FFF6;
  font-weight: bold;
  font-size: 1.1rem;
  background-color: #0A4B2C; /* Deep Green */
  transition: background-color 0.3s ease;
}

.page-gdpr__faq-question:hover {
  background-color: #11A84E;
}

.page-gdpr__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
}

.page-gdpr__faq-answer {
  padding: 20px 25px;
  color: #A7D9B8;
  font-size: 1rem;
  background-color: #11271B;
  border-top: 1px solid #2E7A4E;
}

.page-gdpr__faq-item[open] .page-gdpr__faq-question {
  background-color: #11A84E;
}

.page-gdpr__faq-item details > summary {
  list-style: none;
}

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

.page-gdpr__contact-list li strong {
  color: #F2FFF6;
}

.page-gdpr__policy-changes p {
  color: #A7D9B8;
}

/* Color Contrast Specific Classes */
.page-gdpr__dark-bg {
  background-color: #08160F;
  color: #F2FFF6;
}

.page-gdpr__light-bg {
  background-color: #11271B; /* Card BG for light sections */
  color: #F2FFF6;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-gdpr__hero-content {
    padding: 0 15px;
  }

  .page-gdpr__grid-3-col, .page-gdpr__grid-2-col {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-gdpr {
    font-size: 16px;
  }

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

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

  .page-gdpr__lead-text {
    font-size: 1rem;
  }

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

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

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

  .page-gdpr__cta-button,
  .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__hero-content .page-gdpr__cta-button {
    max-width: 300px !important;
    margin: 0 auto;
  }

  .page-gdpr__card {
    padding: 20px;
  }

  .page-gdpr img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-gdpr__section,
  .page-gdpr__card,
  .page-gdpr__container,
  .page-gdpr__data-item,
  .page-gdpr__usage-item,
  .page-gdpr__measure-item,
  .page-gdpr__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-gdpr__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }

  .page-gdpr__faq-answer {
    padding: 15px 20px;
  }

  .page-gdpr__hero-image-wrapper {
    padding-left: 0;
    padding-right: 0;
  }
}