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

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

.page-gdpr__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px;
  background-color: #2F6BFF;
  color: #FFFFFF;
  text-align: center;
  padding-bottom: 40px;
}

.page-gdpr__hero-image {
  width: 100%;
  max-width: 1200px;
  height: auto;
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-gdpr__main-title {
  font-size: clamp(2em, 4vw, 3.5em);
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 15px;
  max-width: 800px;
  color: #FFFFFF;
}

.page-gdpr__intro-text {
  font-size: 1.1em;
  max-width: 900px;
  margin: 0 auto 30px auto;
  color: #D6E2FF;
}

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

.page-gdpr__section-title {
  font-size: 2.2em;
  color: #2F6BFF;
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: bold;
  text-align: center;
}

.page-gdpr__paragraph {
  font-size: 1.05em;
  margin-bottom: 20px;
  color: #1F2D3D;
  text-align: justify;
}

.page-gdpr__rights-list,
.page-gdpr__security-list,
.page-gdpr__related-policies {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #1F2D3D;
}

.page-gdpr__list-item {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.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__content-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  object-fit: cover;
  margin: 30px auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-gdpr__contact-section {
  background-color: #FFFFFF;
  padding: 50px 0;
  text-align: center;
  border-top: 1px solid #D6E2FF;
}

.page-gdpr__contact-btn {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.1em;
  transition: background 0.3s ease, transform 0.3s ease;
  box-shadow: 0 5px 15px rgba(47, 107, 255, 0.4);
}

.page-gdpr__contact-btn:hover {
  background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
  transform: translateY(-2px);
  box-shadow: 0 7px 20px rgba(47, 107, 255, 0.6);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .page-gdpr__hero-section {
    padding-bottom: 20px;
  }

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

  .page-gdpr__intro-text {
    font-size: 1em;
    margin-left: 15px;
    margin-right: 15px;
  }

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

  .page-gdpr__paragraph,
  .page-gdpr__list-item {
    font-size: 0.95em;
    text-align: left;
  }

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

  .page-gdpr__contact-btn {
    padding: 12px 25px;
    font-size: 1em;
  }
}