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

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

.page-gdpr__hero {
  background: linear-gradient(135deg, #0A2463, #3B5998); /* Dark blue gradient */
  color: #FFFFFF; /* White text on dark background */
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-gdpr__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold title for emphasis */
}

.page-gdpr__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px;
  color: #E0E0E0; /* Light grey for body text */
}

.page-gdpr__hero-image {
  width: 100%;
  max-width: 900px;
  height: auto;
  margin-top: 40px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

.page-gdpr__section {
  padding: 60px 0;
  border-bottom: 1px solid #e0e0e0;
}

.page-gdpr__section:last-of-type {
  border-bottom: none;
}

.page-gdpr__section-title {
  font-size: 2.5em;
  color: #0A2463; /* Dark blue for section titles */
  margin-bottom: 30px;
  text-align: center;
  position: relative;
}

.page-gdpr__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700; /* Gold underline */
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-gdpr__section p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #333333; /* Darker grey for body text on light background */
  text-align: justify;
}

.page-gdpr__list {
  list-style-type: disc;
  padding-left: 25px;
  margin-bottom: 20px;
}

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

.page-gdpr__list strong {
  color: #0A2463;
}

.page-gdpr__icon-image, .page-gdpr__illustration-image, .page-gdpr__contact-image {
  display: block;
  max-width: 600px;
  width: 100%;
  height: auto;
  margin: 40px auto 20px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-gdpr__button {
  display: inline-block;
  background-color: #FFD700; /* Gold button background */
  color: #0A2463; /* Dark blue text on gold button */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  margin-top: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-gdpr__button:hover {
  background-color: #E6C200; /* Darker gold on hover */
  transform: translateY(-2px);
}

.page-gdpr__link {
  color: #0A2463;
  text-decoration: underline;
  font-weight: bold;
}

.page-gdpr__link:hover {
  color: #FFD700;
}

/* Specific section adjustments */
.page-gdpr__commitment, .page-gdpr__contact {
  text-align: center;
}

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

  .page-gdpr__hero-description,
  .page-gdpr__section p,
  .page-gdpr__list li {
    font-size: 1em;
  }

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

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

@media (max-width: 480px) {
  .page-gdpr__hero {
    padding: 60px 0;
  }

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

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

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

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