/* 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 {
  background-color: #0A2463; /* Main color */
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

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

.page-gdpr__subtitle {
  font-size: 1.4em;
  margin-bottom: 30px;
  opacity: 0.9;
}

.page-gdpr__section {
  padding: 60px 0;
  border-bottom: 1px solid #eee;
}

.page-gdpr__section:last-of-type {
  border-bottom: none;
}

.page-gdpr__heading {
  font-size: 2.5em;
  color: #0A2463; /* Main color */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-gdpr__heading::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700; /* Accent color */
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-gdpr__intro p, .page-gdpr__rights p, .page-gdpr__contact p {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
  color: #555;
}

.page-gdpr__intro strong, .page-gdpr__rights strong {
  color: #0A2463;
}

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

.page-gdpr__card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-gdpr__card-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.page-gdpr__card-title {
  font-size: 1.4em;
  color: #0A2463; /* Main color */
  margin-bottom: 15px;
}

.page-gdpr__card p {
  font-size: 1em;
  color: #666;
  line-height: 1.7;
}

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

.page-gdpr__list li {
  background-color: #fff;
  margin-bottom: 15px;
  padding: 20px 25px;
  border-left: 5px solid #FFD700; /* Accent color */
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  font-size: 1.1em;
  color: #444;
}

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

.page-gdpr__content-image {
  max-width: 600px;
  height: auto;
  display: block;
  margin: 40px auto 0;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

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

.page-gdpr__button {
  display: inline-block;
  background-color: #FFD700; /* Accent color */
  color: #0A2463; /* Text color contrasting with accent */
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  margin-top: 30px;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-gdpr__button:hover {
  background-color: #e6c200; /* Darker accent on hover */
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.6);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-gdpr__title {
    font-size: 2.8em;
  }
  .page-gdpr__heading {
    font-size: 2em;
  }
  .page-gdpr__card {
    padding: 25px;
  }
  .page-gdpr__list li {
    padding: 18px 20px;
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero {
    padding: 60px 0;
  }
  .page-gdpr__title {
    font-size: 2.2em;
  }
  .page-gdpr__subtitle {
    font-size: 1.2em;
  }
  .page-gdpr__section {
    padding: 40px 0;
  }
  .page-gdpr__heading {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-gdpr__intro p, .page-gdpr__rights p, .page-gdpr__contact p {
    font-size: 1em;
  }
  .page-gdpr__grid {
    grid-template-columns: 1fr;
  }
  .page-gdpr__card {
    padding: 20px;
  }
  .page-gdpr__card-icon {
    width: 60px;
    height: 60px;
  }
  .page-gdpr__card-title {
    font-size: 1.2em;
  }
  .page-gdpr__list li {
    font-size: 1em;
  }
  .page-gdpr__button {
    padding: 12px 25px;
    font-size: 1.1em;
  }
  .page-gdpr__content-image {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .page-gdpr__title {
    font-size: 1.8em;
  }
  .page-gdpr__subtitle {
    font-size: 1em;
  }
  .page-gdpr__heading {
    font-size: 1.5em;
  }
  .page-gdpr__intro p, .page-gdpr__rights p, .page-gdpr__contact p {
    font-size: 0.95em;
  }
  .page-gdpr__list li {
    font-size: 0.95em;
  }
}