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

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

.page-gdpr__hero {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-gdpr__title {
  font-size: 2.8em;
  margin-bottom: 10px;
  color: #fff;
  font-weight: bold;
}

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

.page-gdpr__hero-image {
  max-width: 80%;
  height: auto;
  margin-top: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

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

.page-gdpr__heading {
  font-size: 2em;
  color: #007bff;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
}

.page-gdpr__heading::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -10px;
  width: 60px;
  height: 4px;
  background-color: #ffc107;
  border-radius: 2px;
}

.page-gdpr__section p {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
  color: #495057;
}

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

.page-gdpr__list li {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-gdpr__list li strong {
  color: #007bff;
}

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

.page-gdpr__contact address {
  font-style: normal;
  margin-top: 20px;
  font-size: 1.1em;
  text-align: center;
  color: #495057;
}

.page-gdpr__link {
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
}

.page-gdpr__link:hover {
  text-decoration: underline;
  color: #0056b3;
}

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

.page-gdpr__btn--primary {
  background-color: #ffc107;
  color: #333;
  border: 2px solid #ffc107;
}

.page-gdpr__btn--primary:hover {
  background-color: #e0a800;
  color: #000;
  border-color: #e0a800;
}

@media (max-width: 768px) {
  .page-gdpr__title {
    font-size: 2em;
  }
  .page-gdpr__subtitle {
    font-size: 1em;
  }
  .page-gdpr__heading {
    font-size: 1.6em;
  }
  .page-gdpr__section {
    padding: 40px 0;
  }
  .page-gdpr__btn {
    padding: 10px 20px;
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-gdpr__title {
    font-size: 1.8em;
  }
  .page-gdpr__subtitle {
    font-size: 0.9em;
  }
  .page-gdpr__heading {
    font-size: 1.4em;
  }
  .page-gdpr__list {
    margin-left: 15px;
  }
  .page-gdpr__section p, .page-gdpr__list li, .page-gdpr__contact address {
    font-size: 0.95em;
  }
}