/* 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: linear-gradient(135deg, #007BFF, #0056b3);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-gdpr__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  z-index: 0;
}

.page-gdpr__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFC107; /* Auxiliary color for emphasis */
  position: relative;
  z-index: 1;
}

.page-gdpr__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  position: relative;
  z-index: 1;
}

.page-gdpr__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  position: relative;
  z-index: 1;
  white-space: nowrap;
}

.page-gdpr__button--primary {
  background-color: #FFC107; /* Auxiliary color */
  color: #0056b3; /* Darker shade of primary for contrast */
  border: 2px solid #FFC107;
}

.page-gdpr__button--primary:hover {
  background-color: #e0a800;
  color: #003f8a;
  transform: translateY(-2px);
}

.page-gdpr__button--secondary {
  background-color: #007BFF; /* Primary color */
  color: #fff;
  border: 2px solid #007BFF;
  margin-left: 15px;
}

.page-gdpr__button--secondary:hover {
  background-color: #0056b3;
  border-color: #0056b3;
  transform: translateY(-2px);
}

.page-gdpr__section {
  padding: 60px 0;
}

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

.page-gdpr__section-title {
  font-size: 2.5em;
  color: #007BFF; /* Primary color */
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
}

.page-gdpr__text {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
  color: #343a40;
}

.page-gdpr__text a {
  color: #007BFF;
  text-decoration: none;
  font-weight: bold;
}

.page-gdpr__text a:hover {
  text-decoration: underline;
}

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

.page-gdpr__list,
.page-gdpr__numbered-list {
  list-style-type: none;
  padding: 0;
  margin: 20px 0;
}

.page-gdpr__list li,
.page-gdpr__numbered-list li {
  background-color: #fff;
  margin-bottom: 10px;
  padding: 15px 20px;
  border-left: 5px solid #007BFF; /* Primary color */
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  font-size: 1.05em;
  color: #343a40;
}

.page-gdpr__numbered-list {
  counter-reset: gdpr-counter;
}

.page-gdpr__numbered-list li::before {
  counter-increment: gdpr-counter;
  content: counter(gdpr-counter) ". ";
  font-weight: bold;
  color: #FFC107; /* Auxiliary color */
  margin-right: 8px;
}

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

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

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

  .page-gdpr__button {
    width: 100%;
    margin-left: 0;
    margin-bottom: 15px;
  }

  .page-gdpr__button--secondary {
    margin-left: 0;
  }
}

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

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

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

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