.page-gdpr {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #F0F0F0; /* Light text for dark background */
  background-color: #0A2463; /* Primary dark background */
}

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

.page-gdpr__hero {
  background: linear-gradient(135deg, #0A2463 0%, #2A4A8A 100%); /* Gradient background */
  padding: 80px 0;
  text-align: center;
  color: #FFFFFF;
}

.page-gdpr__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #E3B505; /* Secondary color for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-gdpr__hero-subtitle {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 30px;
  color: #D3D3D3;
}

.page-gdpr__section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(227, 181, 5, 0.2);
}

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

.page-gdpr__section-title {
  font-size: 2.5em;
  color: #E3B505; /* Secondary color for section titles */
  text-align: center;
  margin-bottom: 40px;
}

.page-gdpr__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 30px;
  color: #F0F0F0;
}

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

.page-gdpr__principle-item {
  background-color: #1A3C7A; /* Slightly lighter blue for cards */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-gdpr__principle-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.3));
}

.page-gdpr__principle-title {
  font-size: 1.5em;
  color: #E3B505;
  margin-bottom: 15px;
}

.page-gdpr__principle-description {
  font-size: 1em;
  color: #D3D3D3;
}

.page-gdpr__list {
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: 40px auto;
  background-color: #1A3C7A;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-gdpr__list li {
  padding: 15px 25px;
  border-bottom: 1px solid rgba(227, 181, 5, 0.1);
  font-size: 1.1em;
  color: #F0F0F0;
  position: relative;
  padding-left: 40px;
}

.page-gdpr__list li:last-child {
  border-bottom: none;
}

.page-gdpr__list li::before {
  content: '✓';
  color: #E3B505;
  font-weight: bold;
  position: absolute;
  left: 15px;
  top: 15px;
}

.page-gdpr__list-highlight {
  color: #E3B505;
}

.page-gdpr__contact {
  text-align: center;
}

.page-gdpr__contact-text {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px;
  color: #F0F0F0;
}

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

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

.page-gdpr__btn--primary {
  background-color: #E3B505;
  color: #0A2463;
}

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

.page-gdpr__btn--secondary {
  background-color: #0A2463;
  color: #E3B505;
  border: 2px solid #E3B505;
}

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

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

  .page-gdpr__hero-subtitle,
  .page-gdpr__section-description,
  .page-gdpr__contact-text {
    font-size: 1em;
  }

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

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

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

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

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

@media (max-width: 480px) {
  .page-gdpr__hero-title {
    font-size: 2em;
  }

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

  .page-gdpr__principle-item {
    padding: 20px;
  }

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