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

.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: #FFFFFF;
  border-bottom: 1px solid #D6E2FF;
}

.page-gdpr__hero-image-wrapper {
  width: 100%;
  max-width: 1200px; /* Max width for the image container */
  margin-bottom: 20px;
}

.page-gdpr__hero-image {
  width: 100%;
  height: auto;
  max-width: 1200px; /* Ensure image doesn't overflow */
  border-radius: 8px;
  object-fit: cover;
}

.page-gdpr__hero-content {
  max-width: 800px;
  padding: 0 20px;
}

.page-gdpr__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #1F2D3D;
  margin-bottom: 15px;
  /* clamp for responsive font size, without fixed large values */
  font-size: clamp(2em, 4vw, 3em); 
}

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

.page-gdpr__section {
  padding: 40px 20px;
  margin-bottom: 20px;
  background-color: #FFFFFF;
  border-bottom: 1px solid #D6E2FF;
}

.page-gdpr__section:last-of-type {
  margin-bottom: 0;
  border-bottom: none;
}

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

.page-gdpr__section-title {
  font-size: 2em;
  color: #1F2D3D;
  margin-bottom: 25px;
  font-weight: bold;
  text-align: center;
}

.page-gdpr__text {
  font-size: 1em;
  color: #1F2D3D;
  margin-bottom: 15px;
  text-align: justify;
}

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

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

.page-gdpr__list-item strong {
  color: #000000; /* Custom Color_1776249996415 */
}

.page-gdpr__image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

.page-gdpr__image--centered {
  margin: 30px auto;
  max-width: 800px;
}

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

.page-gdpr__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  color: #FFFFFF;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  transition: background-color 0.3s ease;
  min-width: 150px;
  text-align: center;
}

.page-gdpr__button:hover {
  opacity: 0.9;
}

.page-gdpr__button--secondary {
  background: #6FA3FF;
}

.page-gdpr__button--secondary:hover {
  background: #2F6BFF;
}

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

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

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

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

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

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

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

  .page-gdpr__button {
    width: 100%;
    max-width: 250px;
  }

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

@media (max-width: 480px) {
  .page-gdpr__main-title {
    font-size: clamp(1.5em, 7vw, 2em);
  }

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

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

/* Ensure content area images CSS dimensions are not less than 200px */
.page-gdpr img {
  min-width: 200px; /* Enforce min-width for content images */
  min-height: 200px; /* Enforce min-height for content images */
}

.page-gdpr__hero-image {
  min-width: auto; /* Hero image can be larger, but still respects its own max-width */
  min-height: auto;
}