.page-gdpr {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #F5F5DC; /* Light background for text */
  background-color: #0A2239;
}

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

.page-gdpr__hero {
  background: linear-gradient(135deg, #0A2239 0%, #2a4a6e 100%);
  padding: 80px 0 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: #F5F5DC;
}

.page-gdpr__hero-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-gdpr__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr__hero-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  margin-top: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-gdpr__section {
  padding: 60px 0;
  background-color: #0A2239;
  color: #F5F5DC;
}

.page-gdpr__section--alt {
  background-color: #1a3a5a;
}

.page-gdpr__section-title {
  font-size: 2.2em;
  color: #FFD700;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

.page-gdpr__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-gdpr__text {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-gdpr__keyword {
  color: #FFD700;
  font-weight: bold;
}

.page-gdpr__list {
  list-style-type: disc;
  margin-left: 40px;
  margin-bottom: 20px;
  font-size: 1.1em;
}

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

.page-gdpr__list-strong {
  color: #FFD700;
}

.page-gdpr__illustration {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-gdpr__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  margin-top: 20px;
}

.page-gdpr__btn--primary {
  background-color: #FFD700;
  color: #0A2239;
  border: 2px solid #FFD700;
}

.page-gdpr__btn--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
}

.page-gdpr__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-gdpr__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A2239;
}

.page-gdpr__call-to-action {
  text-align: center;
  padding-bottom: 80px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-gdpr__hero-title {
    font-size: 2em;
  }

  .page-gdpr__hero-description,
  .page-gdpr__text,
  .page-gdpr__list {
    font-size: 1em;
  }

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

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

  .page-gdpr__btn {
    padding: 10px 20px;
  }
}

@media (max-width: 480px) {
  .page-gdpr__hero-title {
    font-size: 1.6em;
  }

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

  .page-gdpr__hero,
  .page-gdpr__section {
    padding: 40px 0;
  }

  .page-gdpr__btn {
    width: 100%;
    box-sizing: border-box;
  }
}