.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, #28a745);
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-gdpr__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.page-gdpr__hero .page-gdpr__container {
  position: relative;
  z-index: 2;
}

.page-gdpr__title {
  font-size: 2.8em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #ffffff;
  line-height: 1.2;
}

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

.page-gdpr__hero-image {
  max-width: 60%;
  height: auto;
  border-radius: 10px;
  margin-top: 30px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

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

.page-gdpr__section:nth-of-type(even) {
  background-color: #f0f8ff; /* Light blue tint for contrast */
}

.page-gdpr__section-title {
  font-size: 2.2em;
  color: #007bff;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

.page-gdpr__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #28a745;
  border-radius: 2px;
}

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

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

.page-gdpr__list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.page-gdpr__list li {
  background-color: #f0f8ff;
  margin-bottom: 10px;
  padding: 15px 20px;
  border-left: 5px solid #007bff;
  border-radius: 5px;
  font-size: 1.1em;
  color: #333;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.page-gdpr__list li strong {
  color: #0056b3;
}

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

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

.page-gdpr__cta-wrapper {
  text-align: center;
  margin-top: 50px;
}

.page-gdpr__button {
  display: inline-block;
  background-color: #28a745;
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-gdpr__button:hover {
  background-color: #218838;
  transform: translateY(-2px);
}

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

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

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

  .page-gdpr__hero-image, .page-gdpr__image {
    max-width: 90%;
  }

  .page-gdpr__list li {
    font-size: 1em;
    padding: 12px 15px;
  }

  .page-gdpr__button {
    padding: 12px 25px;
    font-size: 1.1em;
  }
}

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

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

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

  .page-gdpr__hero-image, .page-gdpr__image {
    max-width: 100%;
  }

  .page-gdpr__list li {
    font-size: 0.95em;
    padding: 10px 12px;
  }

  .page-gdpr__button {
    padding: 10px 20px;
    font-size: 1em;
  }
}