.page-gdpr {
  color: #ffffff; /* Body background is dark, so text is light */
  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;
  padding: 60px 20px;
  padding-top: 10px; /* body already handles --header-offset */
  text-align: center;
  overflow: hidden;
  background: linear-gradient(135deg, #26A9E0 0%, #1a7bbd 100%); /* Using brand color */
}

.page-gdpr__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  margin-bottom: 30px;
}

.page-gdpr__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

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

.page-gdpr__main-title {
  font-size: clamp(2.2em, 4vw, 3.2em); /* Use clamp for H1 */
  color: #FFFFFF;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.page-gdpr__hero-description {
  font-size: 1.1em;
  color: #f0f0f0;
  margin-bottom: 30px;
}

.page-gdpr__btn-primary {
  display: inline-block;
  background: #EA7C07; /* Login color for CTA */
  color: #FFFFFF;
  padding: 14px 28px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-gdpr__btn-primary:hover {
  background: #d46f05;
}

.page-gdpr__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background: #0a0a0a; /* Ensure content area background is dark */
  color: #ffffff; /* Ensure text is light */
}

.page-gdpr__section-title {
  font-size: 2.2em;
  color: #26A9E0; /* Brand color for section titles */
  margin-top: 50px;
  margin-bottom: 25px;
  text-align: left;
  font-weight: 600;
}

.page-gdpr__text-block {
  font-size: 1.05em;
  margin-bottom: 20px;
  color: #f0f0f0;
}

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

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

.page-gdpr__link {
  color: #26A9E0; /* Brand color for links */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-gdpr__link:hover {
  color: #4dc3ff;
  text-decoration: underline;
}

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

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

.page-gdpr__image-left, .page-gdpr__image-right {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  display: block;
}

.page-gdpr__text-content {
  flex: 2;
  min-width: 300px;
}

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

.page-gdpr__faq-item {
  background: rgba(255, 255, 255, 0.08); /* Slightly transparent white for cards */
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px 25px;
  color: #ffffff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.page-gdpr__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  font-size: 1.15em;
  color: #26A9E0; /* Brand color for FAQ questions */
  cursor: pointer;
  list-style: none; /* For details summary */
}

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

.page-gdpr__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #ffffff;
}

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

.page-gdpr__faq-answer {
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 15px;
  font-size: 1em;
  color: #f0f0f0;
}

.page-gdpr__contact-block {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  margin-bottom: 40px;
  background: rgba(255, 255, 255, 0.08); /* Card-like background */
  padding: 30px;
  border-radius: 8px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-gdpr__hero-section {
    padding: 40px 15px;
  }

  .page-gdpr__hero-image-wrapper {
    margin-bottom: 20px;
  }

  .page-gdpr__main-title {
    font-size: clamp(2em, 5vw, 2.8em);
  }

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

  .page-gdpr__image-text-block, .page-gdpr__image-text-block--right {
    flex-direction: column;
  }

  .page-gdpr__image-left, .page-gdpr__image-right {
    min-width: unset;
    width: 100%;
    max-width: 100%;
  }

  .page-gdpr__text-content {
    min-width: unset;
    width: 100%;
  }

  .page-gdpr__contact-block {
    flex-direction: column;
    padding: 20px;
  }
}

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

  .page-gdpr img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-gdpr__section,
  .page-gdpr__card,
  .page-gdpr__container,
  .page-gdpr__hero-section,
  .page-gdpr__content-area,
  .page-gdpr__image-text-block,
  .page-gdpr__contact-block,
  .page-gdpr__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-gdpr__hero-section {
    padding-top: 10px !important;
    padding-bottom: 30px !important;
  }

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

  .page-gdpr__btn-primary {
    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__faq-question {
    font-size: 1em;
  }
}