.page-gdpr {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for readability on dark background */
  background-color: #0A1931; /* Main dark blue background */
  line-height: 1.6;
}

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

.page-gdpr__hero {
  background-color: #0A1931;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-gdpr__hero-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  margin-top: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

.page-gdpr__title {
  font-size: 2.8em;
  color: #FFD700; /* Accent gold for main title */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.page-gdpr__section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.page-gdpr__section-title {
  font-size: 2.2em;
  color: #FFD700; /* Accent gold for section titles */
  margin-bottom: 30px;
  text-align: center;
  position: relative;
}

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

.page-gdpr__intro p, .page-gdpr__commitment p, .page-gdpr__contact p {
  font-size: 1.1em;
  margin-bottom: 15px;
  text-align: justify;
}

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

.page-gdpr__commitment .page-gdpr__list li {
  background-color: #1A2B43; /* Slightly lighter dark blue for list items */
  margin-bottom: 10px;
  padding: 15px 20px;
  border-left: 4px solid #FFD700;
  border-radius: 4px;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
}

.page-gdpr__commitment .page-gdpr__list li:hover {
  background-color: #2A3C55;
}

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

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

.page-gdpr__grid-item {
  background-color: #1A2B43;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-gdpr__grid-item:hover {
  transform: translateY(-5px);
  background-color: #2A3C55;
}

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

.page-gdpr__grid-item p {
  font-size: 1em;
  color: #B0B0B0;
}

.page-gdpr__link {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

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

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

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

.page-gdpr__image {
  width: 100%;
  max-width: 600px;
  height: auto;
  display: block;
  margin: 40px auto 0 auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

/* 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__grid {
    grid-template-columns: 1fr;
  }

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

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

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

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

  .page-gdpr__commitment .page-gdpr__list li {
    padding: 10px 15px;
  }

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