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

.page-gdpr__hero {
  background: linear-gradient(135deg, #003366 0%, #0a4d8c 100%);
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-gdpr__hero-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

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

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

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

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

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

.page-gdpr__section-title {
  font-size: 2.2em;
  color: #003366;
  margin-bottom: 25px;
  text-align: center;
  position: relative;
}

.page-gdpr__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 10px auto 0;
  border-radius: 2px;
}

.page-gdpr__introduction p, .page-gdpr__contact p {
  font-size: 1.1em;
  margin-bottom: 15px;
  text-align: justify;
  color: #555;
}

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

.page-gdpr__principle-item {
  background-color: #f4f9ff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  text-align: center;
  border: 1px solid #e0eaf5;
}

.page-gdpr__principle-item h3 {
  color: #003366;
  font-size: 1.4em;
  margin-bottom: 15px;
}

.page-gdpr__principle-item p {
  color: #666;
  font-size: 1em;
  line-height: 1.5;
}

.page-gdpr__icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 8px rgba(0, 51, 102, 0.2));
}

.page-gdpr__list {
  list-style: disc inside;
  margin-left: 20px;
  font-size: 1.1em;
  color: #444;
}

.page-gdpr__list li {
  margin-bottom: 10px;
}

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

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

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

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

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

.page-gdpr__btn {
  display: inline-block;
  background-color: #FFD700;
  color: #003366;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin-top: 20px;
  border: 2px solid #FFD700;
}

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

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

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

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

  .page-gdpr__container {
    padding: 20px 15px;
  }

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

  .page-gdpr__list {
    margin-left: 0;
    padding-left: 20px;
  }
}

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

  .page-gdpr__title {
    font-size: 1.8em;
  }

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

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

  .page-gdpr__introduction p, .page-gdpr__contact p, .page-gdpr__list li {
    font-size: 0.95em;
  }

  .page-gdpr__principle-item h3 {
    font-size: 1.2em;
  }

  .page-gdpr__icon {
    width: 50px;
    height: 50px;
  }
}