.page-gdpr {
  background-color: #F4F7FB;
  color: #1F2D3D;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: 10px; /* Small top padding for the first section */
}

.page-gdpr__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: #FFFFFF;
  padding: 40px 20px;
  border-radius: 8px;
  margin-bottom: 30px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.page-gdpr__hero-image-wrapper {
  width: 100%;
  margin-bottom: 20px;
  max-width: 100%; /* Ensure it doesn't overflow */
}

.page-gdpr__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  object-position: center;
  aspect-ratio: 16/9; /* Standard aspect ratio for hero */
  min-width: 200px;
  min-height: 200px;
}

.page-gdpr__hero-content {
  width: 100%;
  max-width: 800px; /* Constrain text width */
}

.page-gdpr__main-title {
  font-size: clamp(1.8rem, 4.5vw, 2.5rem);
  color: #000000;
  margin-bottom: 15px;
  line-height: 1.2;
  font-weight: bold;
}

.page-gdpr__intro-paragraph {
  font-size: 1.1rem;
  color: #1F2D3D;
  margin-bottom: 25px;
}

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

.page-gdpr__cta-button:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

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

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

.page-gdpr__content-section {
  padding: 30px 20px;
  margin-bottom: 20px;
  background-color: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr__container {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr__section-title {
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: #000000;
  margin-bottom: 20px;
  font-weight: bold;
  text-align: center;
}

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

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

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

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

.page-gdpr__content-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 25px auto;
  border-radius: 8px;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

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

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

/* Mobile responsiveness */
@media (max-width: 768px) {
  .page-gdpr__hero-section,
  .page-gdpr__content-section {
    padding: 20px 15px;
    margin-bottom: 15px;
    border-radius: 0;
    box-shadow: none;
  }

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

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

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

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

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

  .page-gdpr__cta-button {
    padding: 10px 20px;
    font-size: 0.95rem;
    min-width: unset;
    width: 100%;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 480px) {
  .page-gdpr__hero-section,
  .page-gdpr__content-section {
    padding: 15px 10px;
  }

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

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

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