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

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

.page-gdpr__hero {
  background: linear-gradient(135deg, #004D99, #003366);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.page-gdpr__title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FFD700; /* Auxiliary color for emphasis */
  line-height: 1.2;
}

.page-gdpr__subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-gdpr__button--primary {
  background-color: #FFD700; /* Auxiliary color */
  color: #004D99; /* Primary color for text */
  border: 2px solid #FFD700;
}

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

.page-gdpr__section {
  padding: 60px 0;
  background-color: #fff;
  margin-bottom: 20px;
}

.page-gdpr__section--intro {
  background-color: #f0f4f8;
}

.page-gdpr__heading {
  font-size: 2em;
  color: #004D99; /* Primary color */
  margin-bottom: 30px;
  text-align: center;
}

.page-gdpr__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

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

.page-gdpr__card {
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-gdpr__card-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  color: #004D99;
}

.page-gdpr__card-title {
  font-size: 1.4em;
  color: #004D99;
  margin-bottom: 15px;
}

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

.page-gdpr__list {
  list-style: disc inside;
  margin-left: 20px;
  margin-bottom: 20px;
}

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

.page-gdpr__list-strong {
  color: #004D99;
}

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

.page-gdpr__image--fullwidth {
  width: 100%;
}

.page-gdpr__contact-info {
  font-size: 1.2em;
  text-align: center;
  margin-bottom: 20px;
}

.page-gdpr__link {
  color: #004D99;
  text-decoration: none;
  font-weight: bold;
}

.page-gdpr__link:hover {
  text-decoration: underline;
  color: #003366;
}

.page-gdpr__cta-buttons {
  text-align: center;
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-gdpr__button--secondary {
  background-color: #004D99; /* Primary color */
  color: #fff;
  border: 2px solid #004D99;
}

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

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

  .page-gdpr__subtitle {
    font-size: 1em;
  }

  .page-gdpr__heading {
    font-size: 1.6em;
  }

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

  .page-gdpr__card {
    padding: 20px;
  }

  .page-gdpr__button {
    padding: 12px 25px;
  }

  .page-gdpr__cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

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

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

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

  .page-gdpr__button {
    width: 100%;
    max-width: 280px;
  }
}