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

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

.page-gdpr__hero-section {
  background: linear-gradient(135deg, #0A192F, #1e3a5f);
  padding: 100px 0;
  text-align: center;
  color: #FFD700; /* Gold for hero text */
}

.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__btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  white-space: nowrap;
}

.page-gdpr__btn--primary {
  background-color: #FFD700;
  color: #0A192F;
  border: 2px solid #FFD700;
}

.page-gdpr__btn--primary:hover {
  background-color: #e6c200;
  color: #0A192F;
}

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

.page-gdpr__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A192F;
}

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

.page-gdpr__section--alt-bg {
  background-color: #1a2a47; /* Slightly lighter dark background */
}

.page-gdpr__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
}

.page-gdpr__text-center {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 30px;
}

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

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

.page-gdpr__text-content {
  flex: 1;
}

.page-gdpr__text-content h2 {
  text-align: left;
  font-size: 2em;
  margin-bottom: 20px;
}

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

.page-gdpr__image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-gdpr__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

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

.page-gdpr__commitment-item, .page-gdpr__data-usage-item {
  background-color: #0A192F;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: 1px solid #FFD70033;
}

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

.page-gdpr__commitment-item p, .page-gdpr__data-usage-item p {
  color: #E0E0E0;
}

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

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

.page-gdpr__list strong {
  color: #FFD700;
}

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

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-gdpr__hero-title {
    font-size: 2.8em;
  }
  .page-gdpr__section-title {
    font-size: 2em;
  }
  .page-gdpr__content-grid, .page-gdpr__content-grid--reverse {
    flex-direction: column;
  }
  .page-gdpr__text-content h2 {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero-section {
    padding: 80px 0;
  }
  .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;
  }
  .page-gdpr__commitment-points, .page-gdpr__data-usage-points {
    grid-template-columns: 1fr;
  }
}

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