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

.page-gdpr__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 40px;
  background-color: #2F6BFF;
  color: #FFFFFF;
  overflow: hidden;
}

.page-gdpr__hero-image-wrapper {
  width: 100%;
  max-height: 450px;
  overflow: hidden;
}

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

.page-gdpr__hero-content {
  text-align: center;
  max-width: 900px;
  padding: 20px;
  z-index: 1;
}

.page-gdpr__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin-bottom: 15px;
  max-width: 100%;
  font-size: clamp(2em, 3.5vw, 2.8em); /* Adjusted to clamp for responsiveness */
}

.page-gdpr__intro-text {
  font-size: 1.1em;
  opacity: 0.9;
}

.page-gdpr__content-section {
  padding: 60px 20px;
  background-color: #F4F7FB;
}

.page-gdpr__container {
  max-width: 1200px;
  margin: 0 auto;
  background-color: #FFFFFF;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.page-gdpr__section-heading {
  color: #2F6BFF;
  font-size: 2em;
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-gdpr__section-heading:first-of-type {
  margin-top: 0;
}

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

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

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

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

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

.page-gdpr__image-block {
  margin: 30px 0;
  text-align: center;
}

.page-gdpr__content-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  min-height: 200px;
}

.page-gdpr__contact-info {
  margin-top: 20px;
  padding: 20px;
  background-color: #F4F7FB;
  border-left: 5px solid #2F6BFF;
  border-radius: 4px;
}

.page-gdpr__cta-wrapper {
  text-align: center;
  margin-top: 40px;
}

.page-gdpr__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 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1em;
}

.page-gdpr__button:hover {
  background: linear-gradient(180deg, #6FA3FF 0%, #4A8BFF 100%);
}

.page-gdpr__last-updated {
  background-color: #F4F7FB;
  padding: 20px 20px 40px;
  text-align: center;
  color: #1F2D3D;
}

.page-gdpr__update-text {
  font-size: 0.9em;
  color: #000000;
}

@media (max-width: 768px) {
  .page-gdpr__hero-section {
    padding: 10px 0 20px;
  }

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

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

  .page-gdpr__content-section {
    padding: 30px 15px;
  }

  .page-gdpr__container {
    padding: 20px;
  }

  .page-gdpr__section-heading {
    font-size: 1.5em;
    margin-top: 30px;
    margin-bottom: 15px;
  }

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

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

  .page-gdpr__button {
    padding: 10px 20px;
    font-size: 0.9em;
  }

  .page-gdpr__hero-image-wrapper {
    max-height: 250px;
  }
}