.page-gdpr {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #FFFFFF; /* Light text on dark backgrounds */
  background-color: #0A2239; /* Main dark background */
}

.page-gdpr a {
  color: #FFD700;
  text-decoration: none;
}

.page-gdpr a:hover {
  text-decoration: underline;
}

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

.page-gdpr__hero {
  position: relative;
  background-color: #0A2239;
  color: #FFFFFF;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  min-height: 400px;
}

.page-gdpr__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  z-index: 0;
}

.page-gdpr__hero .page-gdpr__container {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

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

.page-gdpr__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #E0E0E0;
}

.page-gdpr__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  font-weight: bold;
  text-transform: uppercase;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
}

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

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

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

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

.page-gdpr__section {
  padding: 60px 0;
  background-color: #1a3a5c;
  color: #FFFFFF;
}

.page-gdpr__section--dark {
  background-color: #0A2239;
  color: #E0E0E0;
}

.page-gdpr__section-title {
  font-size: 2.5em;
  color: #FFD700;
  margin-bottom: 30px;
  text-align: center;
}

.page-gdpr__section p {
  font-size: 1.1em;
  margin-bottom: 15px;
  color: #E0E0E0;
}

.page-gdpr__section--dark p {
  color: #C0C0C0;
}

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

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

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

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

.page-gdpr__section--cta {
  background: linear-gradient(135deg, #0A2239, #1a3a5c);
  text-align: center;
  padding: 80px 0;
}

.page-gdpr__cta-content .page-gdpr__section-title {
  color: #FFD700;
}

.page-gdpr__cta-content p {
  color: #E0E0E0;
  font-size: 1.2em;
  margin-bottom: 40px;
}

.page-gdpr__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-gdpr__contact-link {
  font-weight: bold;
}

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

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

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

  .page-gdpr__section p,
  .page-gdpr__list {
    font-size: 0.95em;
  }

  .page-gdpr__cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .page-gdpr__btn--secondary {
    margin-left: 0;
    margin-top: 15px;
  }
}

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

  .page-gdpr__hero {
    padding: 60px 0;
  }

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

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