.page-gdpr {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #E0E0E0; /* Light gray for body text on dark background */
  background-color: #0A1931; /* Primary dark background */
}

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

.page-gdpr__hero {
  background: linear-gradient(135deg, #0A1931, #2A3B5B); /* Gradient for hero section */
  padding: 80px 0;
  text-align: center;
  color: #FFFFFF;
}

.page-gdpr__title {
  font-size: 3.5em;
  color: #FFD700; /* Auxiliary gold for main title */
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.page-gdpr__subtitle {
  font-size: 1.5em;
  color: #B0C4DE; /* Lighter blue-gray for subtitle */
  margin-bottom: 40px;
}

.page-gdpr__hero-image {
  max-width: 80%;
  height: auto;
  border-radius: 8px;
  margin-top: 30px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

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

.page-gdpr__section--alt {
  background-color: #1A2B47; /* Slightly lighter dark blue for alternate sections */
}

.page-gdpr__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Auxiliary gold for section titles */
  text-align: center;
  margin-bottom: 40px;
  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;
  color: #E0E0E0;
  text-align: justify;
}

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

.page-gdpr__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-gdpr__card {
  background-color: #2A3B5B; /* Darker blue for cards */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-gdpr__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.5);
}

.page-gdpr__card-title {
  font-size: 1.5em;
  color: #FFD700; /* Gold for card titles */
  margin-bottom: 15px;
  text-align: center;
}

.page-gdpr__card-text {
  font-size: 1em;
  color: #C0C0C0;
  text-align: justify;
}

.page-gdpr__list {
  list-style: disc inside;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #E0E0E0;
}

.page-gdpr__list li {
  margin-bottom: 10px;
  font-size: 1.1em;
}

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

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

.page-gdpr__cta-section {
  background-color: #0A1931;
  padding: 80px 0;
  text-align: center;
}

.page-gdpr__cta-content {
  background-color: #2A3B5B;
  padding: 50px;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.page-gdpr__cta-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 25px;
}

.page-gdpr__cta-text {
  font-size: 1.2em;
  color: #B0C4DE;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr__button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #0A1931; /* Dark text on gold button */
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.3em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.page-gdpr__button:hover {
  background-color: #E5C100; /* Slightly darker gold on hover */
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

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

  .page-gdpr__subtitle {
    font-size: 1.2em;
  }

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

  .page-gdpr__grid {
    grid-template-columns: 1fr;
  }

  .page-gdpr__card {
    padding: 25px;
  }

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

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

  .page-gdpr__button {
    padding: 12px 30px;
    font-size: 1.1em;
  }
}

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

  .page-gdpr__subtitle {
    font-size: 1em;
  }

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

  .page-gdpr__text, .page-gdpr__list li, .page-gdpr__card-text {
    font-size: 0.95em;
  }

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

  .page-gdpr__cta-content {
    padding: 30px;
  }

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

  .page-gdpr__button {
    font-size: 1em;
    padding: 10px 25px;
  }
}