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

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

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

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

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

.page-gdpr__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #F2FFF6;
  margin-bottom: 20px;
  /* No fixed large font-size, relying on responsive scaling and weight */
  font-size: clamp(2rem, 5vw, 3.5rem);
}

.page-gdpr__intro-text {
  font-size: 1.15rem;
  margin-bottom: 30px;
  color: #A7D9B8;
}

.page-gdpr__btn-primary {
  display: inline-block;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
}

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

.page-gdpr__content-section {
  padding: 80px 20px;
  background-color: #08160F;
}

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

.page-gdpr__section-title {
  color: #F2FFF6;
  font-size: 2.5rem;
  margin-bottom: 40px;
  text-align: center;
  font-weight: bold;
}

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

.page-gdpr__card {
  background-color: #11271B;
  border: 1px solid #2E7A4E;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  color: #F2FFF6;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

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

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

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

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

.page-gdpr__image-left, .page-gdpr__image-right {
  flex: 1;
  max-width: 50%;
  border-radius: 8px;
  object-fit: cover;
}

.page-gdpr__text-content {
  flex: 1;
}

.page-gdpr__contact-card {
  background-color: #11271B;
  border: 1px solid #2E7A4E;
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 40px;
  text-align: center;
}

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

.page-gdpr__contact-list li {
  margin-bottom: 10px;
  color: #A7D9B8;
  font-size: 1.1rem;
}

.page-gdpr__contact-link {
  color: #2AD16F;
  text-decoration: none;
}

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

.page-gdpr a {
  color: #2AD16F;
  text-decoration: none;
}

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

/* FAQ Styles */
.page-gdpr__faq-list {
  margin-top: 40px;
}

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

.page-gdpr__faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #F2FFF6;
  font-weight: bold;
  font-size: 1.1rem;
  transition: background-color 0.3s ease;
}

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

.page-gdpr__faq-item summary:hover {
  background-color: #1E3A2A;
}

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

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

.page-gdpr__faq-answer {
  padding: 0 20px 20px 20px;
  color: #A7D9B8;
  font-size: 1rem;
  border-top: 1px solid #1E3A2A;
}

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

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-gdpr__hero-content {
    padding: 15px;
  }
  .page-gdpr__main-title {
    font-size: clamp(1.8rem, 4vw, 3rem);
  }
  .page-gdpr__intro-text {
    font-size: 1rem;
  }
  .page-gdpr__section-title {
    font-size: 2rem;
  }
  .page-gdpr__image-text-block {
    flex-direction: column;
    gap: 20px;
  }
  .page-gdpr__image-left, .page-gdpr__image-right {
    max-width: 100%;
  }
  .page-gdpr__content-section {
    padding: 60px 15px;
  }
}

@media (max-width: 768px) {
  .page-gdpr {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-gdpr__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important; /* body handles header offset */
  }
  .page-gdpr__main-title {
    font-size: clamp(1.5rem, 6vw, 2.5rem);
  }
  .page-gdpr__intro-text {
    font-size: 0.95rem;
  }
  .page-gdpr__section-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
  .page-gdpr__paragraph {
    font-size: 0.9rem;
  }
  .page-gdpr__content-section {
    padding: 40px 15px;
  }

  /* Image responsiveness */
  .page-gdpr img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-gdpr__hero-image-wrapper,
  .page-gdpr__image-text-block,
  .page-gdpr__container,
  .page-gdpr__contact-card,
  .page-gdpr__card {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  /* Button responsiveness */
  .page-gdpr__btn-primary,
  .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__btn-primary {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

@media (max-width: 480px) {
  .page-gdpr__main-title {
    font-size: clamp(1.2rem, 8vw, 2rem);
  }
  .page-gdpr__section-title {
    font-size: 1.5rem;
  }
  .page-gdpr__card-title {
    font-size: 1.2rem;
  }
  .page-gdpr__faq-item summary {
    font-size: 1rem;
  }
}