.page-gdpr__hero {
  background-color: #0A192F;
  color: #FFFFFF;
  padding: 100px 20px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

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

.page-gdpr__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #64FFDA;
}

.page-gdpr__hero-description {
  font-size: 1.2em;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr__btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  font-size: 1em;
}

.page-gdpr__btn--primary {
  background-color: #64FFDA;
  color: #0A192F;
  border: 2px solid #64FFDA;
}

.page-gdpr__btn--primary:hover {
  background-color: transparent;
  color: #64FFDA;
}

.page-gdpr__btn--secondary {
  background-color: #0A192F;
  color: #64FFDA;
  border: 2px solid #64FFDA;
}

.page-gdpr__btn--secondary:hover {
  background-color: #64FFDA;
  color: #0A192F;
}

.page-gdpr__section {
  padding: 60px 0;
  background-color: #FFFFFF;
  color: #0A192F;
}

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

.page-gdpr__section-title {
  font-size: 2.5em;
  color: #0A192F;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
}

.page-gdpr__section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background-color: #64FFDA;
  margin: 15px auto 0;
}

.page-gdpr__section p {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 15px;
  text-align: justify;
}

.page-gdpr__keyword {
  color: #0A192F;
  font-weight: bold;
}

.page-gdpr__list,
.page-gdpr__numbered-list {
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
  margin-bottom: 30px;
}

.page-gdpr__list li,
.page-gdpr__numbered-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 1.05em;
  line-height: 1.6;
}

.page-gdpr__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #64FFDA;
  font-weight: bold;
  font-size: 1.2em;
}

.page-gdpr__numbered-list li::before {
  counter-increment: gdpr-counter;
  content: counter(gdpr-counter) ". ";
  position: absolute;
  left: 0;
  color: #64FFDA;
  font-weight: bold;
  font-size: 1.2em;
}

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

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

.page-gdpr__contact {
  text-align: center;
  background-color: #0A192F;
  color: #FFFFFF;
}

.page-gdpr__contact .page-gdpr__section-title {
  color: #64FFDA;
}

.page-gdpr__contact .page-gdpr__section-title::after {
  background-color: #FFFFFF;
}

.page-gdpr__contact p {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr__contact strong {
  color: #64FFDA;
}

/* 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__section p {
    font-size: 0.95em;
  }

  .page-gdpr__list li,
  .page-gdpr__numbered-list li {
    font-size: 0.95em;
  }
}

@media (max-width: 480px) {
  .page-gdpr__hero {
    padding: 80px 15px;
  }

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

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

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

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

  .page-gdpr__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }
}