/* style/gdpr.css */
.page-gdpr {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light grey for general text on dark background */
  background-color: #1A202C;
  line-height: 1.6;
}

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

.page-gdpr__hero {
  background: linear-gradient(135deg, #FFD700 0%, #1A202C 100%);
  padding: 80px 0;
  text-align: center;
  color: #1A202C;
}

.page-gdpr__title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #1A202C;
  font-weight: bold;
}

.page-gdpr__highlight {
  color: #806b00;
}

.page-gdpr__subtitle {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #333;
}

.page-gdpr__btn {
  display: inline-block;
  background-color: #FFD700;
  color: #1A202C;
  padding: 12px 25px;
  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:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-gdpr__btn--secondary {
  background-color: #333;
  color: #FFD700;
}

.page-gdpr__btn--secondary:hover {
  background-color: #555;
  color: #FFD700;
}

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

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

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

.page-gdpr__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 60px;
  height: 3px;
  background-color: #FFD700;
}

.page-gdpr__introduction p,
.page-gdpr__principles p,
.page-gdpr__rights p,
.page-gdpr__security p,
.page-gdpr__contact p {
  margin-bottom: 20px;
  text-align: justify;
}

.page-gdpr__text-highlight {
  color: #FFD700;
  font-weight: bold;
}

.page-gdpr__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #E0E0E0;
}

.page-gdpr__list li {
  margin-bottom: 10px;
}

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

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

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

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

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

  .page-gdpr__btn {
    padding: 10px 20px;
  }
}

@media (max-width: 480px) {
  .page-gdpr__title {
    font-size: 1.8em;
  }

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

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

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