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

.page-gdpr__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 0 60px; /* Small top padding, more bottom padding */
  overflow: hidden;
}

.page-gdpr__hero-image-wrapper {
  width: 100%;
  max-height: 600px;
  overflow: hidden;
  position: relative;
  z-index: 0;
}

.page-gdpr__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-gdpr__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 40px 20px;
  margin-top: -150px; /* Pull content up over the image slightly for visual flow */
  background: linear-gradient(0deg, #08160F 0%, rgba(8, 22, 15, 0.8) 50%, rgba(8, 22, 15, 0.5) 100%);
  border-radius: 10px;
}

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

.page-gdpr__intro-text {
  color: #A7D9B8; /* Text Secondary */
  font-size: clamp(1em, 2vw, 1.2em);
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.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 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

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

.page-gdpr__section {
  padding: 40px 20px;
  margin-bottom: 30px;
  border-radius: 10px;
  background-color: #11271B; /* Card BG */
}

.page-gdpr__content-area {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 40px 20px;
}

.page-gdpr__section-title {
  color: #F2C14E; /* Gold */
  font-size: clamp(1.8em, 3.5vw, 2.5em);
  margin-bottom: 25px;
  text-align: center;
  font-weight: bold;
}

.page-gdpr__sub-title {
  color: #57E38D; /* Glow */
  font-size: clamp(1.4em, 2.8vw, 1.8em);
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-gdpr__paragraph {
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
  font-size: 1.05em;
}

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

.page-gdpr__list-item {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  color: #A7D9B8; /* Text Secondary */
}

.page-gdpr__list-item::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2AD16F; /* Lighter green from button gradient */
  font-weight: bold;
}

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

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

.page-gdpr__link:hover {
  color: #F2C14E; /* Gold */
  text-decoration: underline;
}

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

.page-gdpr__faq-item {
  background-color: #0A4B2C; /* Deep Green */
  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: 18px 25px;
  cursor: pointer;
  background-color: #1E3A2A; /* Divider */
  color: #F2FFF6; /* Text Main */
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
}

.page-gdpr__faq-question:hover {
  background-color: #2E7A4E; /* Border */
}

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

.page-gdpr__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #57E38D; /* Glow */
}

.page-gdpr__faq-item[open] .page-gdpr__faq-toggle {
  content: '−';
}

.page-gdpr__faq-answer {
  padding: 15px 25px 20px;
  color: #A7D9B8; /* Text Secondary */
  font-size: 1em;
}

.page-gdpr__cta-section {
  text-align: center;
  padding: 60px 20px;
  background-color: #0A4B2C; /* Deep Green */
  border-radius: 10px;
  margin-top: 40px;
}

.page-gdpr__cta-title {
  color: #F2C14E; /* Gold */
  font-size: clamp(1.8em, 3.5vw, 2.5em);
  margin-bottom: 20px;
}

.page-gdpr__cta-text {
  color: #A7D9B8; /* Text Secondary */
  font-size: 1.1em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr__cta-button {
  padding: 18px 35px;
  font-size: 1.2em;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .page-gdpr {
    font-size: 15px;
    line-height: 1.5;
  }

  .page-gdpr__hero-content {
    margin-top: -80px; /* Adjust for smaller screens */
    padding: 30px 15px;
  }

  .page-gdpr__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
  }

  .page-gdpr__intro-text {
    font-size: clamp(0.9em, 3.5vw, 1.1em);
  }

  .page-gdpr__section-title,
  .page-gdpr__cta-title {
    font-size: clamp(1.5em, 6vw, 2em);
  }

  .page-gdpr__sub-title {
    font-size: clamp(1.2em, 5vw, 1.6em);
  }

  .page-gdpr__section,
  .page-gdpr__content-area,
  .page-gdpr__cta-section {
    padding: 25px 15px;
    margin-left: 15px;
    margin-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

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

  .page-gdpr__list-item {
    padding-left: 20px;
  }

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

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

  /* Image responsive adaptations */
  .page-gdpr img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  /* Button responsive adaptations */
  .page-gdpr__btn-primary,
  .page-gdpr__cta-button {
    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: 15px 20px;
  }

  .page-gdpr__cta-section .page-gdpr__btn-primary {
    padding: 18px 25px;
  }
}