.page-gdpr {
  background-color: #F4F7FB;
  color: #1F2D3D;
}

.page-gdpr__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small padding-top to account for fixed header */
  padding-bottom: 40px;
  background-color: #2F6BFF;
  color: #FFFFFF;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-gdpr__hero-image-wrapper {
  width: 100%;
  max-width: 1920px; /* Ensure image wrapper can scale */
  margin-bottom: 20px;
}

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

.page-gdpr__hero-content {
  max-width: 900px;
  padding: 0 20px;
  z-index: 1; /* Ensure content is above any potential background elements */
}

.page-gdpr__main-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 15px;
  color: #FFFFFF;
  max-width: 100%;
}

.page-gdpr__description {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #E0E0E0;
}

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

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

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

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

.page-gdpr__content-section--alt-bg .page-gdpr__section-title {
  color: #1F2D3D;
}

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

.page-gdpr__content-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  min-height: 200px;
}

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

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

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

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

.page-gdpr__button:hover {
  opacity: 0.9;
  box-shadow: 0 6px 20px rgba(47, 107, 255, 0.4);
}

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

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

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

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

  .page-gdpr__main-title {
    font-size: 2em;
  }

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

  .page-gdpr__section-title {
    font-size: 1.8em;
    margin-bottom: 20px;
  }

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

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

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

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

  .page-gdpr__content-image {
    max-width: 100%;
    height: auto;
  }
}