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

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

.page-gdpr__hero-section {
  background-color: #017439;
  padding-bottom: 20px;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.page-gdpr__hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center; /* Center content horizontally */
}

.page-gdpr__hero-banner {
  width: 100%;
  margin: 0;
  overflow: hidden;
  padding-top: 10px; /* Small top padding to avoid header overlap */
}

.page-gdpr__hero-banner img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16/9; /* Adjusted for content display, original was 1920x1080 */
  object-fit: cover;
  object-position: center;
}

.page-gdpr__hero-content {
  text-align: center;
  padding: 30px 0;
  max-width: 800px;
}

.page-gdpr__hero-title {
  font-size: clamp(1.8rem, 4.5vw, 2.8rem); /* Slightly adjusted for better visual */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
  color: #FFFFFF;
}

.page-gdpr__hero-description {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #FFFFFF;
}

.page-gdpr__section-title {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  color: #017439;
  margin-top: 40px;
  margin-bottom: 25px;
  text-align: center;
  font-weight: 700;
}

.page-gdpr__sub-title {
  font-size: clamp(1.3rem, 3.5vw, 1.8rem);
  color: #017439;
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-gdpr__text {
  margin-bottom: 15px;
  font-size: 1rem;
  color: #333333;
}

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

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

.page-gdpr__image-wrapper {
  margin: 30px auto;
  text-align: center;
  max-width: 800px; /* Ensure image doesn't stretch too wide */
}

.page-gdpr__image-wrapper img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  filter: none; /* No CSS filter */
  width: 800px; /* HTML width attribute */
  height: 600px; /* HTML height attribute */
}

.page-gdpr__image-caption {
  font-style: italic;
  font-size: 0.9rem;
  color: #666666;
  margin-top: 10px;
}

.page-gdpr__content-section--alt-bg {
  background-color: #f9f9f9;
  padding: 40px 0;
}

.page-gdpr__button-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  margin-bottom: 40px;
}

.page-gdpr__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  font-size: 1rem;
  text-align: center;
}

.page-gdpr__button--primary {
  background-color: #017439;
  color: #FFFFFF;
  border: 1px solid #017439;
}

.page-gdpr__button--primary:hover {
  background-color: #005a2b;
  border-color: #005a2b;
}

.page-gdpr__button--secondary {
  background-color: #FFFFFF;
  color: #017439;
  border: 1px solid #017439;
}

.page-gdpr__button--secondary:hover {
  background-color: #e0ffe0;
  color: #017439;
}

.page-gdpr__related-policies {
  padding-bottom: 40px;
}

.page-gdpr__policy-links {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px 30px;
  margin-top: 30px;
}

.page-gdpr__policy-item a {
  color: #017439;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
}

.page-gdpr__policy-item a:hover {
  text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-gdpr__container {
    padding: 15px;
  }

  .page-gdpr__hero-title {
    font-size: clamp(1.5rem, 6vw, 2.2rem);
  }

  .page-gdpr__hero-description {
    font-size: 0.95rem;
  }

  .page-gdpr__section-title {
    font-size: clamp(1.4rem, 5vw, 1.8rem);
  }

  .page-gdpr__sub-title {
    font-size: clamp(1.2rem, 4vw, 1.5rem);
  }

  .page-gdpr__text {
    font-size: 0.95rem;
  }

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

  .page-gdpr__button-group {
    flex-direction: column;
    align-items: center;
  }

  .page-gdpr__button {
    width: 90%;
    max-width: 300px;
  }

  .page-gdpr__policy-links {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  /* Ensure content area images do not overflow */
  .page-gdpr__content-section img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Minimum size for content images */
    min-height: 200px;
  }
}

@media (max-width: 549px) {
  .page-gdpr__hero-section {
    padding-bottom: 15px;
  }

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

  .page-gdpr__hero-description {
    font-size: 0.9rem;
  }

  .page-gdpr__section-title {
    font-size: clamp(1.2rem, 6vw, 1.6rem);
  }

  .page-gdpr__sub-title {
    font-size: clamp(1.1rem, 5vw, 1.3rem);
  }

  .page-gdpr__text {
    font-size: 0.9rem;
  }

  .page-gdpr__list {
    margin-left: 10px;
  }

  .page-gdpr__button {
    width: 100%;
  }
}