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

.page-gdpr__hero {
  background: linear-gradient(135deg, #1A2E44, #3a5c80);
  padding: 80px 20px;
  text-align: center;
  color: #FFD700;
}

.page-gdpr__hero-title {
  font-size: 3.2em;
  margin-bottom: 15px;
  color: #FFD700;
  font-weight: bold;
}

.page-gdpr__hero-subtitle {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: #e5d1bb;
}

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

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

.page-gdpr__section--alt-bg {
  background-color: #2b415a;
}

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

.page-gdpr__content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: center;
}

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

.page-gdpr__list {
  list-style: disc inside;
  margin-bottom: 20px;
  padding-left: 20px;
  color: #e5d1bb;
}

.page-gdpr__list li {
  margin-bottom: 8px;
  font-size: 1.1em;
}

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

.page-gdpr__image--centered {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

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

.page-gdpr__right-card {
  background-color: #3a5c80;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #FFD700;
}

.page-gdpr__right-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

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

.page-gdpr__right-card p {
  font-size: 1em;
  color: #e5d1bb;
}

.page-gdpr__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  font-size: 1.1em;
  text-align: center;
  cursor: pointer;
}

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

.page-gdpr__btn--primary:hover {
  background-color: #e5c100;
  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: #1A2E44;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (min-width: 768px) {
  .page-gdpr__content-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .page-gdpr__hero-subtitle {
    font-size: 1.5em;
  }

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

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

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

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

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

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

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

  .page-gdpr__right-card {
    padding: 20px;
  }

  .page-gdpr__card-title {
    font-size: 1.3em;
  }

  .page-gdpr__btn {
    padding: 10px 20px;
    font-size: 1em;
  }
}