/* style/gdpr.css */
.page-gdpr {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Dark gray for readability */
  background-color: #f8f8f8;
}

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

.page-gdpr__hero {
  background: linear-gradient(135deg, #003366 0%, #004080 100%); /* Main color gradient */
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.page-gdpr__title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FFCC00; /* Auxiliary color for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.page-gdpr__subtitle {
  font-size: 1.2em;
  max-width: 700px;
  margin: 0 auto 30px;
  color: #e0e0e0;
}

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

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

.page-gdpr__section--alt {
  background-color: #f0f5fa; /* Light background for contrast */
}

.page-gdpr__section-title {
  font-size: 2em;
  color: #003366; /* Main color for titles */
  margin-bottom: 25px;
  text-align: center;
  position: relative;
}

.page-gdpr__section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background-color: #FFCC00; /* Auxiliary color underline */
  margin: 10px auto 0;
  border-radius: 2px;
}

.page-gdpr__section p {
  font-size: 1.1em;
  margin-bottom: 15px;
  text-align: justify;
}

.page-gdpr__image {
  max-width: 90%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

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

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

.page-gdpr__cta-wrapper {
  text-align: center;
  margin-top: 40px;
}

.page-gdpr__cta-button {
  display: inline-block;
  background-color: #FFCC00; /* Auxiliary color for CTA */
  color: #003366; /* Main color for text on CTA */
  padding: 15px 30px;
  font-size: 1.2em;
  font-weight: bold;
  text-decoration: none;
  border-radius: 50px;
  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: #e6b800; /* Darker yellow on hover */
  transform: translateY(-3px);
}

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

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

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

  .page-gdpr__hero-image,
  .page-gdpr__image {
    max-width: 100%;
  }
}

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

  .page-gdpr__title {
    font-size: 1.8em;
  }

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

  .page-gdpr__cta-button {
    padding: 12px 25px;
    font-size: 1.1em;
  }
}