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

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

.page-gdpr__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 60px;
  background-color: #08160F;
  overflow: hidden; /* Ensure content doesn't spill */
}

.page-gdpr__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  min-height: 300px; /* Ensure minimum size */
  max-height: 600px; /* Limit height for hero */
}

.page-gdpr__hero-content {
  text-align: center;
  padding: 40px 20px;
  background-color: rgba(0, 0, 0, 0.4); /* Slightly transparent overlay for text on hero */
  margin-top: -100px; /* Pull content up over the bottom of the hero image, but not covering important parts */
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 800px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.page-gdpr__main-title {
  font-size: clamp(2em, 3.5vw, 3.2em); /* Responsive H1 size */
  color: #F2FFF6;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 1px;
}

.page-gdpr__description {
  font-size: 1.1em;
  color: #A7D9B8;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr__section-title {
  font-size: clamp(1.8em, 3vw, 2.5em);
  color: #F2C14E; /* Gold for main titles */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  line-height: 1.3;
}

.page-gdpr__content-area {
  padding: 60px 0;
}

.page-gdpr__dark-section {
  background-color: #08160F; /* Deep Green background */
  color: #F2FFF6; /* Light text for dark background */
}

.page-gdpr__light-section {
  background-color: #11271B; /* Card BG, slightly lighter dark */
  color: #F2FFF6; /* Light text for dark background */
}

.page-gdpr__text-block {
  font-size: 1em;
  margin-bottom: 20px;
  color: #A7D9B8; /* Secondary text color */
}

.page-gdpr__text-block p {
  margin-bottom: 15px;
}

.page-gdpr__text-block a {
  color: #57E38D; /* Glow color for links */
  text-decoration: underline;
}

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

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

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

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

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

.page-gdpr__image-left,
.page-gdpr__image-right,
.page-gdpr__contact-image {
  flex: 0 0 40%;
  max-width: 40%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  object-fit: cover;
  min-width: 200px; /* Minimum image size */
  min-height: 200px;
}

.page-gdpr__image-text-block .page-gdpr__text-block {
  flex: 1;
  max-width: 60%;
}

.page-gdpr__contact-block {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

.page-gdpr__contact-block .page-gdpr__text-block {
  flex: 1;
}

/* FAQ Section */
.page-gdpr__faq-section {
  padding: 60px 0;
}

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

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

.page-gdpr__faq-item summary {
  list-style: none; /* Hide default marker */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-weight: bold;
  cursor: pointer;
  font-size: 1.1em;
  background-color: #11A84E; /* Primary color for summary */
  color: #F2FFF6;
  border-bottom: 1px solid #2E7A4E;
}

.page-gdpr__faq-item summary::-webkit-details-marker {
  display: none; /* Hide default marker for webkit */
}

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

.page-gdpr__faq-toggle {
  font-size: 1.5em;
  margin-left: 15px;
  color: #F2FFF6;
}

.page-gdpr__faq-answer {
  padding: 20px 25px;
  background-color: #11271B; /* Card BG */
  color: #A7D9B8;
  font-size: 0.95em;
  line-height: 1.7;
}

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

/* CTA Section */
.page-gdpr__cta-section {
  padding: 80px 0;
  text-align: center;
  background-color: #0A4B2C; /* Deep Green */
  color: #F2FFF6;
}

.page-gdpr__cta-container {
  max-width: 900px;
}

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