.page-gdpr {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #F0F0F0; /* Light text for dark background */
  background-color: #0A2463; /* Main background color */
}

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

.page-gdpr__hero-section {
  background: linear-gradient(135deg, #0A2463 0%, #1A3E7A 100%); /* Darker gradient for hero */
  color: #FFFFFF;
  padding: 80px 0 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-gdpr__hero-title {
  font-size: 3.5em;
  margin-bottom: 15px;
  color: #E3B505; /* Auxiliary color for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-gdpr__hero-subtitle {
  font-size: 1.5em;
  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: 30px;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.page-gdpr__content-section {
  padding: 60px 0;
  background-color: #0A2463;
}

.page-gdpr__content-section:nth-of-type(even) {
  background-color: #1A3E7A; /* Slightly lighter dark background for contrast */
}

.page-gdpr__section-title {
  font-size: 2.5em;
  color: #E3B505;
  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: #E3B505;
  border-radius: 2px;
}

.page-gdpr__content-section p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #F0F0F0;
  text-align: justify;
}

.page-gdpr__content-section strong {
  color: #E3B505;
}

.page-gdpr__list {
  list-style-type: disc;
  margin-left: 40px;
  margin-bottom: 20px;
  color: #F0F0F0;
}

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

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

.page-gdpr__image-inline {
  display: block;
  max-width: 80%;
  height: auto;
  margin: 40px auto 20px auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-gdpr__contact-link {
  color: #E3B505;
  text-decoration: underline;
  font-weight: bold;
}

.page-gdpr__contact-link:hover {
  color: #F0F0F0;
}

.page-gdpr__cta-section {
  background-color: #E3B505; /* Auxiliary color for CTA background */
  color: #0A2463; /* Dark text for light background */
  padding: 80px 0;
  text-align: center;
}

.page-gdpr__cta-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #0A2463;
}

.page-gdpr__cta-section p {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #0A2463;
}

.page-gdpr__cta-button {
  display: inline-block;
  background-color: #0A2463;
  color: #FFFFFF;
  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 4px 8px rgba(0, 0, 0, 0.2);
}

.page-gdpr__cta-button:hover {
  background-color: #1A3E7A;
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-gdpr__hero-title {
    font-size: 2.5em;
  }
  .page-gdpr__hero-subtitle {
    font-size: 1.2em;
  }
  .page-gdpr__section-title {
    font-size: 2em;
  }
  .page-gdpr__content-section p,
  .page-gdpr__list li {
    font-size: 1em;
  }
  .page-gdpr__cta-title {
    font-size: 2em;
  }
  .page-gdpr__cta-button {
    padding: 12px 30px;
    font-size: 1.1em;
  }
  .page-gdpr__list {
    margin-left: 20px;
  }
  .page-gdpr__image-inline {
    max-width: 95%;
  }
}

@media (max-width: 480px) {
  .page-gdpr__hero-title {
    font-size: 2em;
  }
  .page-gdpr__hero-subtitle {
    font-size: 1em;
  }
  .page-gdpr__section-title {
    font-size: 1.8em;
  }
  .page-gdpr__cta-title {
    font-size: 1.8em;
  }
  .page-gdpr__cta-button {
    padding: 10px 25px;
    font-size: 1em;
  }
  .page-gdpr__hero-image {
    max-width: 90%;
  }
}