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

.page-gdpr__hero-section {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding for internal pages */
}

.page-gdpr__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 400px; /* Limit height for hero image on internal pages */
}

.page-gdpr__hero-content {
  width: 100%;
  max-width: 1200px;
  padding: 40px 20px;
  text-align: center;
  background-color: #FFFFFF;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  margin-top: -50px; /* Overlap slightly with image for visual effect */
  position: relative;
  z-index: 1;
}

.page-gdpr__main-title {
  font-size: clamp(2em, 4vw, 3.2em);
  font-weight: 700;
  line-height: 1.2;
  color: #2F6BFF;
  margin-bottom: 15px;
}

.page-gdpr__description {
  font-size: 1.1em;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
  color: #1F2D3D;
}

.page-gdpr__section {
  padding: 60px 20px;
  margin-bottom: 20px;
}

.page-gdpr__section--alt-bg {
  background-color: #FFFFFF;
}

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

.page-gdpr__section-title {
  font-size: clamp(1.8em, 3vw, 2.5em);
  color: #2F6BFF;
  margin-bottom: 30px;
  text-align: center;
  font-weight: 600;
}

.page-gdpr__section p {
  font-size: 1em;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #1F2D3D;
}

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

.page-gdpr__list-item {
  background-color: #FFFFFF;
  border: 1px solid #D6E2FF;
  border-radius: 5px;
  padding: 15px 20px;
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
  color: #1F2D3D;
}

.page-gdpr__list-item::before {
  content: '✅';
  margin-right: 10px;
  font-size: 1.2em;
  line-height: 1;
  color: #2F6BFF;
}

.page-gdpr__list-item strong {
  color: #000000;
}

.page-gdpr__link {
  color: #2F6BFF;
  text-decoration: none;
  font-weight: bold;
}

.page-gdpr__link:hover {
  text-decoration: underline;
  color: #6FA3FF;
}

.page-gdpr__image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 40px auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .page-gdpr__hero-content {
    padding: 30px 15px;
    margin-top: -30px;
  }

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

  .page-gdpr__description {
    font-size: 1em;
  }

  .page-gdpr__section {
    padding: 40px 15px;
  }

  .page-gdpr__section-title {
    font-size: clamp(1.5em, 5vw, 2em);
  }

  .page-gdpr__list-item {
    padding: 12px 15px;
  }

  .page-gdpr__list-item::before {
    font-size: 1em;
  }

  /* Mobile image overflow prevention */
  .page-gdpr img {
    max-width: 100% !important;
    height: auto !important;
  }
}

@media (max-width: 480px) {
  .page-gdpr__hero-content {
    padding: 20px 10px;
    margin-top: -20px;
  }

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

  .page-gdpr__section {
    padding: 30px 10px;
  }

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

  .page-gdpr__list-item {
    font-size: 0.9em;
  }
}