/* style/gdpr.css */
.page-gdpr {
  font-family: 'Arial', sans-serif;
  color: #F0F0F0; /* Light gray for text on dark backgrounds */
  background-color: #1A0033; /* Darker background to contrast with main purple */
  line-height: 1.6;
}

.page-gdpr__hero {
  background: linear-gradient(135deg, #4B0082, #814da8);
  color: #FFD700;
  padding: 80px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.page-gdpr__hero-content {
  max-width: 800px;
}

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

.page-gdpr__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #F0F0F0;
}

.page-gdpr__hero-btn {
  display: inline-block;
  background-color: #FFD700; /* Gold auxiliary color */
  color: #4B0082; /* Deep purple main color */
  padding: 15px 30px;
  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 4px 15px rgba(0, 0, 0, 0.3);
}

.page-gdpr__hero-btn:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  transform: translateY(-3px);
}

.page-gdpr__hero-image-wrapper {
  width: 100%;
  max-width: 600px;
  margin-top: 40px;
}

.page-gdpr__hero-image {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-gdpr__section {
  padding: 60px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.page-gdpr__container {
  max-width: 900px;
  margin: 0 auto;
}

.page-gdpr__section-title {
  font-size: 2.2em;
  color: #FFD700;
  margin-bottom: 30px;
  text-align: center;
  border-bottom: 2px solid #FFD700;
  padding-bottom: 10px;
}

.page-gdpr__section p {
  margin-bottom: 15px;
  color: #E0E0E0;
}

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

.page-gdpr__list li {
  background-color: rgba(255, 255, 255, 0.05);
  margin-bottom: 10px;
  padding: 15px 20px;
  border-left: 5px solid #FFD700;
  border-radius: 5px;
  color: #F0F0F0;
  transition: background-color 0.3s ease;
}

.page-gdpr__list li:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.page-gdpr__list strong {
  color: #FFD700;
}

.page-gdpr__image {
  width: 100%;
  max-width: 500px;
  display: block;
  margin: 40px auto 20px auto;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-gdpr__contact {
  text-align: center;
  background-color: #4B0082;
  color: #FFD700;
}

.page-gdpr__contact p {
  color: #F0F0F0;
}

.page-gdpr__contact-btn {
  display: inline-block;
  background-color: #FFD700;
  color: #4B0082;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  margin-top: 30px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-gdpr__contact-btn:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-gdpr__hero {
    padding: 60px 15px;
  }

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

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

  .page-gdpr__hero-btn {
    padding: 12px 25px;
    font-size: 1em;
  }

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

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

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

  .page-gdpr__hero-image-wrapper {
    margin-top: 20px;
  }
}

@media (max-width: 480px) {
  .page-gdpr__hero-title {
    font-size: 1.7em;
  }

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

  .page-gdpr__hero-btn, .page-gdpr__contact-btn {
    width: 90%;
    max-width: 300px;
    box-sizing: border-box;
  }
}