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

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

.page-gdpr__title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-gdpr__description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px;
}

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

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

.page-gdpr__subtitle {
  font-size: 2em;
  color: #0A2463;
  margin-bottom: 25px;
  text-align: center;
  position: relative;
}

.page-gdpr__subtitle::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background-color: #FFD700;
  margin: 10px auto 0;
  border-radius: 2px;
}

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

.page-gdpr__section ul {
  list-style: disc;
  padding-left: 30px;
  margin-bottom: 20px;
}

.page-gdpr__section li {
  margin-bottom: 10px;
  font-size: 1.1em;
  color: #555;
}

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

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

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

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

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

.page-gdpr__right-item h3 {
  color: #0A2463;
  font-size: 1.4em;
  margin-top: 15px;
  margin-bottom: 10px;
}

.page-gdpr__right-item p {
  font-size: 1em;
  color: #666;
}

.page-gdpr__icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.page-gdpr__contact-link {
  color: #0A2463;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-gdpr__contact-link:hover {
  color: #FFD700;
}

.page-gdpr__cta {
  background-color: #0A2463;
  color: #fff;
  text-align: center;
  padding: 70px 0;
}

.page-gdpr__cta .page-gdpr__subtitle {
  color: #FFD700;
  margin-bottom: 30px;
}

.page-gdpr__cta .page-gdpr__subtitle::after {
  background-color: #fff;
}

.page-gdpr__cta p {
  font-size: 1.15em;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr__button {
  display: inline-block;
  background-color: #FFD700;
  color: #0A2463;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  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;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.6);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-gdpr__title {
    font-size: 2em;
  }
  .page-gdpr__description {
    font-size: 1em;
  }
  .page-gdpr__subtitle {
    font-size: 1.6em;
  }
  .page-gdpr__section {
    padding: 40px 0;
  }
  .page-gdpr__rights-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page-gdpr__hero {
    padding: 60px 0;
  }
  .page-gdpr__title {
    font-size: 1.8em;
  }
  .page-gdpr__button {
    padding: 12px 25px;
    font-size: 1em;
  }
}