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

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

.page-gdpr__hero-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7); /* Slightly darken image for text readability */
}

.page-gdpr__hero-content {
  position: relative; /* Ensure content is above image */
  z-index: 1;
  max-width: 900px;
  padding: 20px;
  color: #FFFFFF;
  margin-top: -150px; /* Pull content up slightly over the image for visual flow, but not overlaying text on image */
}

.page-gdpr__main-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin-bottom: 20px;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(2rem, 4vw, 3.2rem); /* Responsive font size */
}

.page-gdpr__description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.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: 8px;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-gdpr__cta-button:hover {
  background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
  transform: translateY(-2px);
}

.page-gdpr__cta-button--secondary {
  background: linear-gradient(180deg, #6FA3FF 0%, #2F6BFF 100%);
  margin-right: 15px;
}

.page-gdpr__cta-button--secondary:hover {
  background: linear-gradient(180deg, #2F6BFF 0%, #6FA3FF 100%);
}

.page-gdpr__cta-button--tertiary {
  background-color: transparent;
  border: 2px solid #6FA3FF;
  color: #6FA3FF;
}

.page-gdpr__cta-button--tertiary:hover {
  background-color: #6FA3FF;
  color: #FFFFFF;
}

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

.page-gdpr__content-area,
.page-gdpr__commitment-section,
.page-gdpr__rights-section,
.page-gdpr__contact-section {
  padding: 60px 0;
}

.page-gdpr__section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1F2D3D;
  margin-bottom: 30px;
  text-align: center;
  line-height: 1.3;
}

.page-gdpr__text-block {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #1F2D3D;
}

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

.page-gdpr__list-item {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 10px;
  color: #1F2D3D;
  position: relative;
  padding-left: 30px;
}

.page-gdpr__list-item::before {
  content: '✔';
  color: #2F6BFF;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-gdpr__numbered-list .page-gdpr__list-item {
  counter-increment: list-counter;
}

.page-gdpr__numbered-list .page-gdpr__list-item::before {
  content: counter(list-counter) '.';
  color: #2F6BFF;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.page-gdpr__image-wrapper {
  text-align: center;
  margin: 40px 0;
}

.page-gdpr__content-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  width: 800px; /* Default display width */
  height: 600px; /* Default display height */
  object-fit: cover;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .page-gdpr__hero-content {
    margin-top: -80px;
    padding: 15px;
  }

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

  .page-gdpr__description {
    font-size: 1rem;
    max-width: 95%;
  }

  .page-gdpr__section-title {
    font-size: 1.8rem;
  }

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

  .page-gdpr__cta-button {
    width: 100%;
    margin-bottom: 15px;
    margin-right: 0;
  }
}

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

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

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

  .page-gdpr__section-title {
    font-size: 1.5rem;
  }

  .page-gdpr__text-block,
  .page-gdpr__list-item {
    font-size: 0.9rem;
  }
}