/* style/gdpr.css */
.page-gdpr {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #f0f0f0; /* Light text for dark backgrounds */
  background-color: #001a33; /* Dark blue background */
}

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

.page-gdpr__container--narrow {
  max-width: 800px;
}

.page-gdpr__hero {
  background: linear-gradient(135deg, #003366, #001a33);
  padding: 100px 0 60px;
  text-align: center;
  color: #fff;
}

.page-gdpr__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFCC00; /* Auxiliary color for highlight */
  font-weight: bold;
  line-height: 1.2;
}

.page-gdpr__hero-subtitle {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 30px;
  opacity: 0.9;
}

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

.page-gdpr__btn--primary {
  background-color: #FFCC00;
  color: #003366;
  font-size: 1.1em;
}

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

.page-gdpr__btn--secondary {
  background-color: #003366;
  color: #FFCC00;
  border: 2px solid #FFCC00;
  font-size: 1.1em;
}

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

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

.page-gdpr__section--dark {
  background-color: #002244; /* Slightly lighter dark blue */
}

.page-gdpr__section-title {
  font-size: 2.5em;
  color: #FFCC00;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-gdpr__section--intro p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #e0e0e0;
  text-align: justify;
}

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

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

.page-gdpr__grid-item {
  background-color: #003366;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-gdpr__grid-item:hover {
  transform: translateY(-5px);
}

.page-gdpr__icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 204, 0, 0.5));
}

.page-gdpr__item-title {
  font-size: 1.5em;
  color: #FFCC00;
  margin-bottom: 15px;
}

.page-gdpr__grid-item p {
  font-size: 1em;
  color: #e0e0e0;
}

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

.page-gdpr__list li {
  background-color: #002d5c;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  font-size: 1.1em;
  color: #e0e0e0;
  border-left: 5px solid #FFCC00;
}

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

.page-gdpr__section--cta {
  text-align: center;
}

.page-gdpr__section--cta p {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #e0e0e0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-gdpr__hero-title {
    font-size: 2.5em;
  }
  .page-gdpr__hero-subtitle {
    font-size: 1.1em;
  }
  .page-gdpr__section-title {
    font-size: 2em;
  }
  .page-gdpr__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page-gdpr__hero {
    padding: 80px 0 40px;
  }
  .page-gdpr__hero-title {
    font-size: 2em;
  }
  .page-gdpr__hero-subtitle {
    font-size: 1em;
  }
  .page-gdpr__section {
    padding: 40px 0;
  }
  .page-gdpr__section-title {
    font-size: 1.8em;
  }
  .page-gdpr__btn {
    padding: 10px 20px;
    font-size: 1em;
  }
  .page-gdpr__list li {
    font-size: 1em;
    padding: 15px;
  }
}