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

.page-gdpr__hero {
  background: linear-gradient(135deg, #0A2463, #3b5998);
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  position: relative;
  overflow: hidden;
}

.page-gdpr__hero-content {
  max-width: 800px;
  z-index: 1;
}

.page-gdpr__hero-title {
  font-size: 2.8em;
  margin-bottom: 15px;
  color: #E3B505;
  font-weight: bold;
}

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

.page-gdpr__hero-image-wrapper {
  position: absolute;
  bottom: -50px;
  right: -50px;
  opacity: 0.1;
  transform: rotate(-15deg);
  z-index: 0;
}

.page-gdpr__hero-image {
  width: 300px;
  height: auto;
  filter: grayscale(100%);
}

@media (min-width: 768px) {
  .page-gdpr__hero {
    flex-direction: row;
    text-align: left;
    justify-content: space-around;
  }
  .page-gdpr__hero-title {
    font-size: 3.5em;
  }
  .page-gdpr__hero-description {
    font-size: 1.4em;
  }
  .page-gdpr__hero-image-wrapper {
    position: relative;
    bottom: auto;
    right: auto;
    opacity: 1;
    transform: none;
  }
  .page-gdpr__hero-image {
    width: 400px;
  }
}

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

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

.page-gdpr__container {
  max-width: 960px;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-gdpr__section-title {
  font-size: 2.2em;
  color: #0A2463;
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
}

.page-gdpr__commitment p, .page-gdpr__rights p, .page-gdpr__data-processing p, .page-gdpr__contact p {
  margin-bottom: 15px;
  font-size: 1.05em;
  color: #555;
}

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

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

.page-gdpr__list li {
  background-color: #eaf1f8;
  margin-bottom: 10px;
  padding: 15px 20px;
  border-left: 5px solid #0A2463;
  border-radius: 4px;
  font-size: 1.1em;
  color: #333;
}

.page-gdpr__list li strong {
  color: #0A2463;
}

.page-gdpr__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 30px;
}

@media (min-width: 768px) {
  .page-gdpr__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.page-gdpr__card {
  background-color: #f8f8f8;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-gdpr__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-gdpr__card-title {
  font-size: 1.4em;
  color: #0A2463;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-gdpr__card-icon {
  width: 60px;
  height: auto;
  margin-top: 20px;
  opacity: 0.8;
}

.page-gdpr__contact-link {
  color: #E3B505;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-gdpr__contact-link:hover {
  color: #0A2463;
  text-decoration: underline;
}

.page-gdpr__cta-button {
  display: inline-block;
  background-color: #E3B505;
  color: #0A2463;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  margin-top: 30px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(227, 181, 5, 0.4);
}

.page-gdpr__cta-button:hover {
  background-color: #cf9f04;
  transform: translateY(-3px);
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .page-gdpr__hero-title {
    font-size: 2.2em;
  }
  .page-gdpr__hero-description {
    font-size: 1em;
  }
  .page-gdpr__section-title {
    font-size: 1.8em;
  }
  .page-gdpr__container {
    padding: 20px;
  }
  .page-gdpr__list li {
    font-size: 1em;
    padding: 10px 15px;
  }
  .page-gdpr__card-title {
    font-size: 1.2em;
  }
  .page-gdpr__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
}