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

.page-gdpr__hero {
  background: linear-gradient(135deg, #007BFF 0%, #0056b3 100%); /* Main color gradient */
  color: #fff;
  padding: 80px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.page-gdpr__hero-content {
  max-width: 900px;
}

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

.page-gdpr__subtitle {
  font-size: 1.2em;
  margin-bottom: 30px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
}

.page-gdpr__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-gdpr__btn--primary {
  background-color: #FFC107; /* Auxiliary color */
  color: #212529; /* Dark text for contrast */
}

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

.page-gdpr__btn--secondary {
  background-color: #0056b3; /* Darker main color for contrast */
  color: #fff;
  border: 2px solid #007BFF;
}

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

.page-gdpr__btn--large {
    padding: 18px 35px;
    font-size: 1.1em;
}

.page-gdpr__hero-image-wrapper {
  max-width: 600px;
  width: 100%;
  margin-top: 30px;
}

.page-gdpr__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

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

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

.page-gdpr__section--principles {
  background-color: #f0f8ff;
}

.page-gdpr__section--contact {
    background-color: #e6f7ff;
}

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

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

.page-gdpr__text {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #495057;
  text-align: justify;
}

.page-gdpr__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-gdpr__grid-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.page-gdpr__grid-item:hover {
  transform: translateY(-5px);
}

.page-gdpr__item-title {
  font-size: 1.5em;
  color: #007BFF; /* Main color */
  margin-bottom: 15px;
  font-weight: bold;
}

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

.page-gdpr__list li {
  background-color: #fdfdfd;
  padding: 25px;
  margin-bottom: 15px;
  border-left: 5px solid #FFC107; /* Auxiliary color */
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-gdpr__list-title {
  font-size: 1.4em;
  color: #0056b3; /* Darker main color */
  margin-bottom: 10px;
  font-weight: bold;
}

.page-gdpr__list--check li {
    border-left: 5px solid #28a745; /* Green for checkmarks */
    position: relative;
    padding-left: 45px;
}

.page-gdpr__list--check li::before {
    content: '✔';
    color: #28a745;
    font-size: 1.2em;
    position: absolute;
    left: 15px;
    top: 25px;
}

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

.page-gdpr__image--centered {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

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

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

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

  .page-gdpr__grid {
    grid-template-columns: 1fr;
  }

  .page-gdpr__hero {
    flex-direction: column;
    padding: 60px 15px;
  }

  .page-gdpr__hero-image-wrapper {
    margin-top: 20px;
  }

  .page-gdpr__list li {
    padding: 20px;
  }

  .page-gdpr__list--check li {
    padding-left: 40px;
  }

  .page-gdpr__list--check li::before {
    top: 20px;
  }
}

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

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

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

  .page-gdpr__btn {
    padding: 12px 25px;
    font-size: 0.9em;
  }
  .page-gdpr__btn--large {
      padding: 15px 30px;
      font-size: 1em;
  }

  .page-gdpr__item-title {
    font-size: 1.3em;
  }

  .page-gdpr__text {
    font-size: 0.95em;
  }
}