.legal-section {
    padding: 60px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #222222;
    background: linear-gradient(135deg, #f8fff8 0%, #f0f8f0 100%);
    padding-top: 140px;
    min-height: 100vh;
}

.legal-section .container {
    max-width: 1100px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 80, 0, 0.08);
    border-left: 5px solid #2e8b57;
}

.legal-section h1 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2e8b57;
    font-weight: 700;
    text-align: center;
    border-bottom: 2px solid #2e8b57;
    padding-bottom: 15px;
}

.legal-section h2 {
    font-size: 22px;
    margin-top: 35px;
    margin-bottom: 12px;
    color: #1a5c1a;
    font-weight: 600;
    padding-left: 15px;
    border-left: 4px solid #2e8b57;
    background: linear-gradient(to right, rgba(46, 139, 87, 0.05), transparent);
}

.legal-section p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 18px;
    color: #333333;
    text-align: justify;
}

.legal-section a {
    color: #2e8b57;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 1px dotted #2e8b57;
}

.legal-section a:hover {
    color: #1a5c1a;
    text-decoration: none;
    border-bottom: 1px solid #1a5c1a;
}

.legal-section .update-date {
    margin-top: 50px;
    font-style: italic;
    font-size: 14px;
    color: #666666;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

/* Ajout pour les listes si jamais vous en ajoutez */
.legal-section ul, .legal-section ol {
    margin-left: 25px;
    margin-bottom: 20px;
    color: #333333;
}

.legal-section li {
    margin-bottom: 8px;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .legal-section {
        padding: 40px 15px;
        padding-top: 120px;
    }
    
    .legal-section .container {
        padding: 25px;
        border-radius: 8px;
    }
    
    .legal-section h1 {
        font-size: 28px;
    }
    
    .legal-section h2 {
        font-size: 20px;
    }
    
    .legal-section p {
        font-size: 15px;
    }
}