.page-gdpr {
  background-color: #F4F7FB;
  color: #1F2D3D;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.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: 40px;
  background-color: #2F6BFF;
  overflow: hidden;
}

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

.page-gdpr__hero-content {
  text-align: center;
  padding: 20px;
  max-width: 900px;
  color: #FFFFFF;
}

.page-gdpr__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin-bottom: 15px;
  max-width: 100%; /* Ensures title doesn't overflow */
  font-size: clamp(2em, 4vw, 3.5em); /* Responsive font size */
}

.page-gdpr__intro-text {
  font-size: 1.1em;
  margin-bottom: 30px;
}

.page-gdpr__cta-button {
  display: inline-block;
  padding: 12px 25px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1em;
}

.page-gdpr__cta-button:hover {
  background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
}

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

.page-gdpr__container {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid #D6E2FF;
}

.page-gdpr__section-heading {
  color: #2F6BFF;
  font-size: 2em;
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-gdpr__section-heading:first-of-type {
  margin-top: 0;
}

.page-gdpr__paragraph {
  margin-bottom: 15px;
  color: #1F2D3D;
}

.page-gdpr__image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 25px 0;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

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

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

.page-gdpr__contact-list {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 20px;
  color: #1F2D3D;
}

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

.page-gdpr__contact-link,
.page-gdpr__text-link {
  color: #2F6BFF;
  text-decoration: none;
  font-weight: bold;
}

.page-gdpr__contact-link:hover,
.page-gdpr__text-link:hover {
  text-decoration: underline;
  color: #6FA3FF;
}

/* Ensure contrast for all text */
.page-gdpr__paragraph, .page-gdpr__list-item, .page-gdpr__contact-item {
  color: #1F2D3D; /* Sufficient contrast against #FFFFFF and #F4F7FB */
}

.page-gdpr__hero-content p {
  color: #FFFFFF; /* Sufficient contrast against #2F6BFF */
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-gdpr__hero-section {
    padding-bottom: 30px;
  }

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

  .page-gdpr__intro-text {
    font-size: 1em;
  }

  .page-gdpr__content-section {
    padding: 20px 15px;
  }

  .page-gdpr__container {
    padding: 20px;
  }

  .page-gdpr__section-heading {
    font-size: 1.5em;
    margin-top: 30px;
    margin-bottom: 15px;
  }

  .page-gdpr__image {
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
  }

  /* Critical: prevent content overflow on mobile */
  .page-gdpr img {
    max-width: 100% !important;
    height: auto !important;
  }
}

@media (max-width: 480px) {
  .page-gdpr__cta-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
}