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

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

.page-gdpr__hero {
  background: linear-gradient(135deg, #0A1931, #2A3B5B);
  padding: 80px 0;
  text-align: center;
  color: #FFFFFF;
}

.page-gdpr__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold accent */
  font-weight: bold;
}

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

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

.page-gdpr__section--alt-bg {
  background-color: #1A2A47;
}

.page-gdpr__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold accent */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-gdpr__section-subtitle {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr__content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: flex-start;
}

@media (max-width: 992px) {
  .page-gdpr__content-grid {
    grid-template-columns: 1fr;
  }
}

.page-gdpr__content-grid--reverse {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

@media (max-width: 992px) {
  .page-gdpr__content-grid--reverse {
    grid-template-columns: 1fr;
    flex-direction: column-reverse; /* Stack in reverse order on mobile */
  }
}

.page-gdpr__content-block h2 {
  font-size: 2em;
  color: #FFD700;
  margin-bottom: 20px;
  text-align: left;
}

.page-gdpr__content-block p {
  margin-bottom: 15px;
  color: #E0E0E0;
}

.page-gdpr__content-block ul {
  list-style: disc;
  margin-left: 20px;
  color: #E0E0E0;
}

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

.page-gdpr__image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

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

.page-gdpr__card {
  background-color: #0A1931;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.page-gdpr__card:hover {
  transform: translateY(-5px);
  border-color: #FFD700;
}

.page-gdpr__card-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #FFD700);
}

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

.page-gdpr__card-text {
  color: #CCCCCC;
  font-size: 0.95em;
}

.page-gdpr__btn {
  display: inline-block;
  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;
}

.page-gdpr__btn--primary {
  background-color: #FFD700; /* Gold */
  color: #0A1931; /* Dark blue text */
  border: 2px solid #FFD700;
}

.page-gdpr__btn--primary:hover {
  background-color: #E0B800; /* Darker gold */
  color: #000000;
  transform: translateY(-2px);
}

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

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

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-gdpr__hero-title {
    font-size: 2.5em;
  }
  .page-gdpr__section-title {
    font-size: 2em;
  }
  .page-gdpr__grid-3 {
    grid-template-columns: 1fr;
  }
  .page-gdpr__hero {
    padding: 60px 0;
  }
  .page-gdpr__section {
    padding: 40px 0;
  }
}

@media (max-width: 480px) {
  .page-gdpr__hero-title {
    font-size: 2em;
  }
  .page-gdpr__section-title {
    font-size: 1.8em;
  }
  .page-gdpr__hero-description {
    font-size: 1em;
  }
  .page-gdpr__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }
}