.page-gdpr {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #E0E0E0; /* Light gray for text on dark background to ensure WCAG AA contrast */
  background-color: #000000; /* Main dark background */
}

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

.page-gdpr__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, #000000 0%, #333333 100%);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

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

.page-gdpr__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold accent for title */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-gdpr__hero-description {
  font-size: 1.2em;
  color: #CCCCCC;
  margin-bottom: 30px;
}

.page-gdpr__highlight {
  color: #FFD700;
  font-weight: bold;
}

.page-gdpr__button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #000000; /* Dark text on gold */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
}

.page-gdpr__button:hover {
  background-color: #E6C200; /* Slightly darker gold on hover */
  transform: translateY(-2px);
}

.page-gdpr__hero-image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.15;
  background-size: cover;
  background-position: center;
  pointer-events: none;
}

.page-gdpr__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

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

.page-gdpr__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.page-gdpr__what-is-gdpr p {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
  color: #E0E0E0;
}

.page-gdpr__our-commitment {
  background-color: #1A1A1A;
}

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

.page-gdpr__commitment-item {
  background-color: #222222;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

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

.page-gdpr__commitment-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

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

.page-gdpr__commitment-item p {
  color: #CCCCCC;
  font-size: 1em;
}

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

.page-gdpr__your-rights li {
  background-color: #1A1A1A;
  margin-bottom: 15px;
  padding: 20px;
  border-left: 5px solid #FFD700;
  border-radius: 5px;
  font-size: 1.1em;
  color: #E0E0E0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-gdpr__your-rights li strong {
  color: #FFD700;
}

.page-gdpr__contact-cta {
  text-align: center;
  padding-bottom: 80px;
}

.page-gdpr__contact-cta p {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #E0E0E0;
}

.page-gdpr__button--secondary {
  background-color: #DC143C; /* Crimson accent */
  color: #FFFFFF;
}

.page-gdpr__button--secondary:hover {
  background-color: #B20E2F;
}

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

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

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

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

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

  .page-gdpr__hero-title {
    font-size: 2.2em;
  }

  .page-gdpr__hero-description {
    font-size: 1em;
  }

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

  .page-gdpr__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-gdpr__what-is-gdpr p,
  .page-gdpr__commitment-item p,
  .page-gdpr__your-rights li,
  .page-gdpr__contact-cta p {
    font-size: 0.95em;
  }

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

  .page-gdpr__commitment-item {
    padding: 25px;
  }

  .page-gdpr__commitment-item h3 {
    font-size: 1.3em;
  }

  .page-gdpr__button {
    padding: 12px 25px;
    font-size: 0.9em;
  }
}

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

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

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

  .page-gdpr__hero {
    padding: 40px 10px;
  }

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

  .page-gdpr__commitment-icon {
    width: 60px;
    height: 60px;
  }
}