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

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

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

.page-gdpr__title {
  font-size: 3.2em;
  margin-bottom: 15px;
  color: #FFD700; /* Gold for title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-gdpr__subtitle {
  font-size: 1.5em;
  margin-bottom: 30px;
  color: #e0e0e0;
}

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

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

.page-gdpr__section--alt {
  background-color: #e6eef7; /* Light blueish background for alternate sections */
}

.page-gdpr__section-title {
  font-size: 2.5em;
  color: #003366; /* Dark blue for section titles */
  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: #FFD700; /* Gold underline */
  border-radius: 2px;
}

.page-gdpr__text {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
  color: #444444;
}

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

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

.page-gdpr__list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
}

.page-gdpr__list li {
  background-color: #ffffff;
  margin-bottom: 10px;
  padding: 15px 20px;
  border-left: 5px solid #FFD700; /* Gold accent */
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  font-size: 1.05em;
  color: #333333;
}

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

.page-gdpr__section--cta {
  background-color: #003366; /* Dark blue background for CTA */
  color: #ffffff;
  text-align: center;
  padding: 80px 0;
}

.page-gdpr__cta-content .page-gdpr__section-title {
  color: #FFD700; /* Gold title on dark background */
}

.page-gdpr__cta-content .page-gdpr__section-title::after {
  background-color: #ffffff;
}

.page-gdpr__cta-content .page-gdpr__text {
  color: #e0e0e0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr__button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #003366; /* Dark blue text on gold button */
  padding: 15px 30px;
  font-size: 1.2em;
  font-weight: bold;
  text-decoration: none;
  border-radius: 50px;
  margin-top: 30px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-gdpr__button:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  transform: translateY(-3px);
}

/* 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__text,
  .page-gdpr__list li {
    font-size: 1em;
  }
  .page-gdpr__hero,
  .page-gdpr__section,
  .page-gdpr__section--cta {
    padding: 40px 0;
  }
  .page-gdpr__button {
    padding: 12px 25px;
    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__hero-image {
    max-width: 180px;
  }
  .page-gdpr__list li {
    padding: 10px 15px;
  }
}