.page-gdpr {
  background-color: #FFFFFF;
  color: #333333;
  padding-bottom: 40px;
}

.page-gdpr__hero-section {
  background-color: #26A9E0;
  color: #FFFFFF;
  padding: 40px 20px;
  text-align: center;
  padding-top: 10px; /* Small top padding for inner pages, relying on body for header offset */
}

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

.page-gdpr__main-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin-bottom: 20px;
  font-size: clamp(1.8rem, 4.5vw, 2.5rem); /* Using clamp for responsive H1 */
}

.page-gdpr__intro-paragraph {
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

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

.page-gdpr__heading {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 600;
  color: #26A9E0;
  margin-top: 40px;
  margin-bottom: 20px;
  text-align: left;
}

.page-gdpr__paragraph {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: left;
}

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

.page-gdpr__list-item {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 10px;
}

.page-gdpr__image {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  object-fit: cover;
  min-width: 200px; /* Enforce min size */
  min-height: 200px; /* Enforce min size */
}

.page-gdpr__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.2s ease;
  margin-top: 20px;
}

.page-gdpr__button--primary {
  background-color: #26A9E0;
  color: #FFFFFF;
}

.page-gdpr__button--primary:hover {
  background-color: #1e87c0;
  transform: translateY(-2px);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .page-gdpr__main-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .page-gdpr__heading {
    font-size: clamp(1.2rem, 5vw, 1.8rem);
    margin-top: 30px;
  }

  .page-gdpr__intro-paragraph, .page-gdpr__paragraph, .page-gdpr__list-item {
    font-size: 0.95rem;
  }

  .page-gdpr__hero-section {
    padding: 30px 15px;
  }

  .page-gdpr__content-section {
    padding: 30px 0;
  }

  .page-gdpr__image {
    max-width: 100%;
    height: auto;
    margin: 20px auto;
    min-width: 200px; /* Enforce min size */
    min-height: 200px; /* Enforce min size */
  }
}

@media (max-width: 480px) {
  .page-gdpr__container {
    padding: 0 10px;
  }

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

  .page-gdpr__heading {
    font-size: clamp(1rem, 6vw, 1.5rem);
  }

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

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

  .page-gdpr__paragraph {
    text-align: left; /* Ensure text alignment is good on small screens */
  }
}

/* Ensure content area images are not smaller than 200px */
.page-gdpr img {
  min-width: 200px;
  min-height: 200px;
}

/* Mobile overflow prevention */
@media (max-width: 768px) {
  .page-gdpr img {
    max-width: 100%;
    height: auto;
  }
  .page-gdpr {
    overflow-x: hidden;
  }
}