.page-gdpr {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}

.page-gdpr__hero-section {
  background: linear-gradient(135deg, #003366, #FFD700);
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

.page-gdpr__container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-gdpr__title {
  font-size: 2.8em;
  margin-bottom: 15px;
  color: #ffffff;
  font-weight: bold;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}

.page-gdpr__subtitle {
  font-size: 1.2em;
  color: rgba(255, 255, 255, 0.9);
}

.page-gdpr__content-section {
  padding: 40px 0;
  background-color: #ffffff;
}

.page-gdpr__article {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.page-gdpr__heading {
  font-size: 2em;
  color: #003366;
  margin-top: 30px;
  margin-bottom: 20px;
  border-bottom: 2px solid #FFD700;
  padding-bottom: 10px;
}

.page-gdpr__article p {
  margin-bottom: 15px;
  color: #555;
}

.page-gdpr__article strong {
  color: #003366;
}

.page-gdpr__article ul {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #555;
}

.page-gdpr__article ul li {
  margin-bottom: 8px;
}

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

.page-gdpr__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  margin-top: 20px;
  text-align: center;
}

.page-gdpr__btn--primary {
  background-color: #003366;
  color: #ffffff;
  border: 1px solid #003366;
}

.page-gdpr__btn--primary:hover {
  background-color: #002244;
  transform: translateY(-2px);
}

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

  .page-gdpr__heading {
    font-size: 1.6em;
  }

  .page-gdpr__article {
    padding: 20px;
  }
}

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

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

  .page-gdpr__heading {
    font-size: 1.4em;
  }

  .page-gdpr__btn {
    width: 100%;
    padding: 10px 15px;
  }
}