.page-gdpr__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 40px;
  background-color: #000000; /* Dark background */
  color: #FFFFFF;
}

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

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

.page-gdpr__hero-content {
  max-width: 900px;
  padding: 0 15px;
}

.page-gdpr__main-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #26A9E0;
  margin-bottom: 15px;
  /* No fixed font-size, rely on clamp for responsiveness if needed, but not strictly required by prompt */
}

.page-gdpr__hero-description {
  font-size: 1.1em;
  line-height: 1.6;
  color: #FFFFFF;
}

.page-gdpr__content-section {
  padding: 60px 0;
  background-color: #FFFFFF;
  color: #000000;
}

.page-gdpr__content-section--alt-bg {
  background-color: #f5f5f5; /* Slightly different background for contrast */
}

.page-gdpr__container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-gdpr__section-heading {
  font-size: 2em;
  font-weight: 600;
  color: #26A9E0;
  margin-bottom: 25px;
  text-align: center;
}

.page-gdpr__text {
  font-size: 1em;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #333333; /* Darker text for readability on light background */
}

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

.page-gdpr__list-item {
  font-size: 1em;
  line-height: 1.6;
  margin-bottom: 10px;
  color: #333333;
}

.page-gdpr__image-wrapper {
  margin: 30px 0;
  text-align: center;
}

.page-gdpr__content-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: block; /* Ensure it behaves as a block element */
  margin: 0 auto; /* Center the image */
}

.page-gdpr__contact-section {
  padding: 60px 0;
  background-color: #26A9E0;
  color: #FFFFFF;
  text-align: center;
}

.page-gdpr__contact-section .page-gdpr__section-heading {
  color: #FFFFFF;
}

.page-gdpr__contact-section .page-gdpr__text {
  color: #FFFFFF;
}

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

.page-gdpr__contact-item {
  font-size: 1.1em;
  margin-bottom: 10px;
}

.page-gdpr__link {
  color: #FFFFFF;
  text-decoration: underline;
}

.page-gdpr__link:hover {
  text-decoration: none;
  color: #EA7C07;
}

.page-gdpr__button {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  color: #FFFFFF;
  background-color: #EA7C07; /* Login/Contact button color */
}

.page-gdpr__button:hover {
  background-color: #d16b06;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-gdpr__main-title {
    font-size: 2em;
  }

  .page-gdpr__section-heading {
    font-size: 1.7em;
  }

  .page-gdpr__hero-description,
  .page-gdpr__text,
  .page-gdpr__list-item,
  .page-gdpr__contact-item {
    font-size: 0.95em;
  }

  .page-gdpr__content-section,
  .page-gdpr__contact-section {
    padding: 40px 0;
  }

  .page-gdpr__button {
    padding: 10px 25px;
  }

  /* Mobile content image constraint */
  .page-gdpr__hero-image,
  .page-gdpr__content-image {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-gdpr__main-title {
    font-size: 1.7em;
  }

  .page-gdpr__section-heading {
    font-size: 1.5em;
  }

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