.page-gdpr {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #E0E0E0; /* Light grey for main text on dark background */
  background-color: #000000; /* Black background */
}

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

.page-gdpr__hero {
  background: linear-gradient(135deg, #8B0000 0%, #330000 100%); /* Dark red gradient */
  padding: 80px 0;
  text-align: center;
  color: #FFD700; /* Gold text for hero */
  border-bottom: 2px solid #FFD700;
}

.page-gdpr__title {
  font-size: 2.8em;
  color: #FFD700; /* Gold */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-weight: bold;
}

.page-gdpr__intro-text {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto;
  color: #F0F0F0; /* Slightly lighter grey for intro text */
}

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

.page-gdpr__section--alt {
  background-color: #1a1a1a; /* Dark grey for alternating sections */
}

.page-gdpr__section-title {
  font-size: 2em;
  color: #FFD700; /* Gold */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 10px;
}

.page-gdpr__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 60px;
  height: 3px;
  background-color: #8B0000; /* Dark Red underline */
}

.page-gdpr__content-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.page-gdpr__content-grid--reverse {
  flex-direction: row-reverse;
}

.page-gdpr__text-content,
.page-gdpr__image-wrapper {
  flex: 1;
  min-width: 300px;
}

.page-gdpr__text-content p {
  margin-bottom: 15px;
  color: #E0E0E0;
}

.page-gdpr__text-content strong {
  color: #FFD700;
}

.page-gdpr__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #E0E0E0;
}

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

.page-gdpr__section-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease-in-out;
}

.page-gdpr__section-image:hover {
  transform: translateY(-5px);
}

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

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

.page-gdpr__btn {
  display: inline-block;
  background-color: #FFD700; /* Gold */
  color: #000000; /* Black text for contrast */
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  margin-top: 20px;
  border: none;
  cursor: pointer;
  font-size: 1em;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

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

.page-gdpr__cta-section {
  background-color: #8B0000; /* Dark Red */
  padding: 80px 0;
  text-align: center;
  color: #FFD700; /* Gold text */
}

.page-gdpr__cta-title {
  font-size: 2.5em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-gdpr__cta-text {
  font-size: 1.1em;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #F0F0F0;
}

.page-gdpr__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-gdpr__btn--primary {
  background-color: #FFD700; /* Gold */
  color: #000000;
}

.page-gdpr__btn--primary:hover {
  background-color: #E6C200;
}

.page-gdpr__btn--secondary {
  background-color: #333333; /* Dark grey */
  color: #FFD700;
  border: 1px solid #FFD700;
}

.page-gdpr__btn--secondary:hover {
  background-color: #555555;
  color: #FFFFFF;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-gdpr__title {
    font-size: 2em;
  }
  .page-gdpr__intro-text {
    font-size: 1em;
  }
  .page-gdpr__section-title {
    font-size: 1.8em;
  }
  .page-gdpr__content-grid {
    flex-direction: column;
  }
  .page-gdpr__content-grid--reverse {
    flex-direction: column;
  }
  .page-gdpr__cta-title {
    font-size: 2em;
  }
  .page-gdpr__cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .page-gdpr__btn {
    width: 80%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .page-gdpr__hero, .page-gdpr__section, .page-gdpr__cta-section {
    padding: 40px 0;
  }
  .page-gdpr__title {
    font-size: 1.8em;
  }
  .page-gdpr__section-title {
    font-size: 1.5em;
  }
  .page-gdpr__list {
    margin-left: 15px;
  }
}