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

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

.page-gdpr__hero-section {
  background: linear-gradient(135deg, #0A2463, #3a5c9f);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.page-gdpr__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #E3B505; /* Bright gold for emphasis */
}

.page-gdpr__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-gdpr__btn--primary {
  background-color: #E3B505;
  color: #0A2463;
  border: 2px solid #E3B505;
}

.page-gdpr__btn--primary:hover {
  background-color: #f0c83a;
  transform: translateY(-2px);
}

.page-gdpr__btn--secondary {
  background-color: #0A2463;
  color: #E3B505;
  border: 2px solid #E3B505;
}

.page-gdpr__btn--secondary:hover {
  background-color: #1a3c7c;
  transform: translateY(-2px);
}

.page-gdpr__content-section {
  padding: 60px 0;
}

.page-gdpr__section-title {
  font-size: 2em;
  color: #0A2463;
  margin-top: 40px;
  margin-bottom: 25px;
  border-bottom: 3px solid #E3B505;
  padding-bottom: 10px;
}

.page-gdpr__text {
  margin-bottom: 15px;
  color: #444;
}

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

.page-gdpr__list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.page-gdpr__list li {
  background-color: #fff;
  margin-bottom: 10px;
  padding: 15px 20px;
  border-left: 5px solid #E3B505;
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  color: #333;
}

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

.page-gdpr__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.page-gdpr__card {
  background-color: #fff;
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-gdpr__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.page-gdpr__card-title {
  font-size: 1.3em;
  color: #0A2463;
  margin-bottom: 15px;
  border-bottom: 2px dotted #E3B505;
  padding-bottom: 5px;
}

.page-gdpr__card-text {
  color: #555;
  font-size: 0.95em;
}

.page-gdpr__call-to-action {
  text-align: center;
  background-color: #0A2463;
  color: #fff;
  padding: 40px 20px;
  border-radius: 10px;
  margin-top: 50px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.page-gdpr__cta-text {
  font-size: 1.5em;
  margin-bottom: 25px;
  color: #E3B505;
}

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

  .page-gdpr__hero-description {
    font-size: 1em;
  }

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

  .page-gdpr__grid {
    grid-template-columns: 1fr;
  }

  .page-gdpr__card-title {
    font-size: 1.2em;
  }

  .page-gdpr__cta-text {
    font-size: 1.2em;
  }
}

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

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

  .page-gdpr__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }

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

  .page-gdpr__list li {
    padding: 10px 15px;
  }

  .page-gdpr__card {
    padding: 20px;
  }

  .page-gdpr__call-to-action {
    padding: 30px 15px;
  }
}