/* style/gdpr.css */
.page-gdpr {
  font-family: 'Arial', sans-serif;
  color: #0A2239; /* Dark blue for primary text */
  line-height: 1.6;
}

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

.page-gdpr__hero {
  background: linear-gradient(135deg, #0A2239, #2A4A69); /* Dark blue gradient */
  color: #FFFFFF; /* White text on dark background */
  padding: 100px 0;
  text-align: center;
}

.page-gdpr__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #E0B44B; /* Gold for emphasis */
  line-height: 1.2;
}

.page-gdpr__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  color: #F0F0F0;
}

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

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

.page-gdpr__section-title {
  font-size: 2.5em;
  color: #0A2239; /* Dark blue */
  margin-bottom: 30px;
  text-align: center;
}

.page-gdpr__introduction,
.page-gdpr__data-collection,
.page-gdpr__data-usage,
.page-gdpr__user-rights,
.page-gdpr__security,
.page-gdpr__contact {
  background-color: #FFFFFF;
}

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

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

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

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

.page-gdpr__btn--primary {
  background-color: #E0B44B; /* Gold */
  color: #0A2239; /* Dark blue text on gold */
  border: 2px solid #E0B44B;
}

.page-gdpr__btn--primary:hover {
  background-color: #C09A3E;
  color: #FFFFFF; /* White text on darker gold */
  border-color: #C09A3E;
}

.page-gdpr__btn--secondary {
  background-color: #0A2239; /* Dark blue */
  color: #E0B44B; /* Gold text on dark blue */
  border: 2px solid #0A2239;
}

.page-gdpr__btn--secondary:hover {
  background-color: #2A4A69;
  color: #FFFFFF;
  border-color: #2A4A69;
}

.page-gdpr__contact p {
  text-align: center;
  font-size: 1.1em;
}

.page-gdpr__link {
  color: #E0B44B; /* Gold for links */
  text-decoration: none;
  font-weight: bold;
}

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

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

  .page-gdpr__hero-subtitle {
    font-size: 1.2em;
  }

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

  .page-gdpr__btn {
    padding: 12px 25px;
    font-size: 0.9em;
  }
}

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

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

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

  .page-gdpr__list {
    padding-left: 10px;
  }
}