/* style/gdpr.css */
.page-gdpr {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f4f7f6;
}

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

.page-gdpr__container--center {
  text-align: center;
}

.page-gdpr__hero {
  background: linear-gradient(135deg, #0A2463 0%, #304E8A 100%); /* Dark blue gradient */
  color: #FFFFFF;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-gdpr__hero-image {
  position: absolute;
  bottom: 0;
  right: 0;
  opacity: 0.15;
  width: 300px;
  height: auto;
  z-index: 0;
}

.page-gdpr__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFD700; /* Bright gold for emphasis */
  position: relative;
  z-index: 1;
}

.page-gdpr__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  position: relative;
  z-index: 1;
}

.page-gdpr__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  position: relative;
  z-index: 1;
}

.page-gdpr__btn--primary {
  background-color: #FFD700; /* Bright gold */
  color: #0A2463; /* Dark blue text */
  border: 2px solid #FFD700;
}

.page-gdpr__btn--primary:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  border-color: #e6c200;
}

.page-gdpr__btn--secondary {
  background-color: #0A2463; /* Dark blue */
  color: #FFD700; /* Bright gold text */
  border: 2px solid #FFD700;
}

.page-gdpr__btn--secondary:hover {
  background-color: #1a3c7c; /* Slightly lighter blue on hover */
  border-color: #e6c200;
}

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

.page-gdpr__section--alt {
  background-color: #e0e6e9;
}

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

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

.page-gdpr__text {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #444;
}

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

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

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

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

.page-gdpr__section--cta {
  background-color: #0A2463;
  color: #FFFFFF;
  padding: 80px 0;
  text-align: center;
}

.page-gdpr__section--cta .page-gdpr__section-title {
  color: #FFD700;
}

.page-gdpr__section--cta .page-gdpr__text {
  color: #E0E0E0;
  max-width: 700px;
  margin: 0 auto 30px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-gdpr__hero-title {
    font-size: 2.5em;
  }
  .page-gdpr__hero-description {
    font-size: 1em;
  }
  .page-gdpr__section-title {
    font-size: 1.8em;
  }
  .page-gdpr__text {
    font-size: 0.95em;
  }
  .page-gdpr__hero-image {
    width: 200px;
  }
}

@media (max-width: 480px) {
  .page-gdpr__hero-title {
    font-size: 2em;
  }
  .page-gdpr__hero-description {
    font-size: 0.9em;
  }
  .page-gdpr__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-gdpr__hero-image {
    width: 150px;
  }
}