/* Styles spécifiques à la page mentions légales */
.legal-content {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 40px;
  margin: 40px 0;
}

.legal-content h2 {
  color: #2c3e50;
  margin-top: 30px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.legal-content h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #3498db, #2ecc71);
}

.legal-content p,
.legal-content ul,
.legal-content address {
  color: #7f8c8d;
  margin-bottom: 20px;
  line-height: 1.7;
}

.legal-content ul {
  padding-left: 20px;
}

.legal-content ul li {
  margin-bottom: 10px;
}

.legal-content a {
  color: #3498db;
}

.legal-content a:hover {
  text-decoration: underline;
}

.legal-section {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
}
