/* style/gdpr.css */
.page-gdpr {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light grey text for contrast on dark background */
  background-color: #1A1A1A; /* Dark background */
  line-height: 1.6;
}

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

.page-gdpr__hero {
  background: linear-gradient(135deg, #8B0000, #4A0000); /* Dark red gradient */
  padding: 80px 0;
  text-align: center;
  color: #FFD700; /* Gold text for hero title */
}

.page-gdpr__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-gdpr__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #F0F0F0;
}

.page-gdpr__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.page-gdpr__section {
  padding: 60px 0;
  background-color: #1A1A1A;
}

.page-gdpr__section--alt {
  background-color: #222222;
}

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

.page-gdpr__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #8B0000;
  border-radius: 2px;
}

.page-gdpr__text {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #E0E0E0;
}

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

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

.page-gdpr__list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-gdpr__list li {
  background-color: #2B2B2B;
  margin-bottom: 10px;
  padding: 15px 20px;
  border-left: 5px solid #FFD700;
  border-radius: 5px;
  font-size: 1.05em;
  color: #F0F0F0;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-gdpr__list li:hover {
  transform: translateX(5px);
  background-color: #3A3A3A;
}

.page-gdpr__cta-section {
  background: linear-gradient(90deg, #8B0000, #FFD700); /* Red to Gold gradient */
  padding: 80px 0;
  text-align: center;
  color: #FFFFFF; /* White text on gradient */
}

.page-gdpr__cta-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #FFFFFF;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

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

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

.page-gdpr__btn {
  display: inline-block;
  padding: 15px 30px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  min-width: 180px;
}

.page-gdpr__btn--primary {
  background-color: #FFD700; /* Gold */
  color: #8B0000; /* Deep red text */
  border: 2px solid #FFD700;
}

.page-gdpr__btn--primary:hover {
  background-color: #FFC107; /* Slightly darker gold */
  color: #6A0000;
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.page-gdpr__btn--secondary {
  background-color: #8B0000; /* Deep red */
  color: #FFD700; /* Gold text */
  border: 2px solid #8B0000;
}

.page-gdpr__btn--secondary:hover {
  background-color: #6A0000; /* Slightly darker red */
  color: #FFEB3B;
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.page-gdpr__btn--tertiary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-gdpr__btn--tertiary:hover {
  background-color: #FFD700;
  color: #8B0000;
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-gdpr__hero {
    padding: 60px 0;
  }

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

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

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

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

  .page-gdpr__cta-description {
    font-size: 1.1em;
  }

  .page-gdpr__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-gdpr__btn {
    width: 80%;
    max-width: 300px;
  }
}

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

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

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