/* Styles spécifiques à la page conditions générales */
.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 h3 {
  color: #34495e;
  margin-top: 25px;
  margin-bottom: 15px;
  font-size: 1.1em;
}

.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;
}

.legal-section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Animation d'apparition progressive */
.legal-section:nth-child(1) { transition-delay: 0.1s; }
.legal-section:nth-child(2) { transition-delay: 0.2s; }
.legal-section:nth-child(3) { transition-delay: 0.3s; }
.legal-section:nth-child(4) { transition-delay: 0.4s; }
.legal-section:nth-child(5) { transition-delay: 0.5s; }
.legal-section:nth-child(6) { transition-delay: 0.6s; }
.legal-section:nth-child(7) { transition-delay: 0.7s; }
.legal-section:nth-child(8) { transition-delay: 0.8s; }
.legal-section:nth-child(9) { transition-delay: 0.9s; }
.legal-section:nth-child(10) { transition-delay: 1.0s; }
.legal-section:nth-child(11) { transition-delay: 1.1s; }
.legal-section:nth-child(12) { transition-delay: 1.2s; }
.legal-section:nth-child(13) { transition-delay: 1.3s; }
.legal-section:nth-child(14) { transition-delay: 1.4s; }
.legal-section:nth-child(15) { transition-delay: 1.5s; }
.legal-section:nth-child(16) { transition-delay: 1.6s; }

/* Responsive design */
@media (max-width: 768px) {
  .legal-content {
    padding: 20px;
    margin: 20px 0;
  }
  
  .legal-content h2 {
    font-size: 1.3em;
  }
  
  .legal-content h3 {
    font-size: 1.0em;
  }
} 