.legal-container {
    max-width: 900px;
    margin: 50px auto;
    padding: 20px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    font-family: 'Lato', sans-serif;
}

.legal-container h1 {
    text-align: center;
    color: #EABF9F;
    font-size: 2em;
    margin-bottom: 20px;
}

.legal-container h2 {
    color: #6BBBAE ;
    border-bottom: 2px solid #6BBBAE;
    padding-bottom: 5px;
    margin-top: 20px;
}

.legal-container p {
    color: #333;
    font-size: 1em;
    line-height: 1.6;
}

.legal-container a {
    color: #6BBBAE;
    text-decoration: none;
    font-weight: bold;
}

.legal-container a:hover {
    text-decoration: underline;
}

.update-date {
    text-align: center;
    font-style: italic;
    margin-top: 30px;
    color: #777;
}

/* Style du bouton Retour à l'accueil */
.button-container {
    text-align: center;
    margin-top: 30px;
}

.btn-retour {
    background-color: #6db3a3;
    color: white !important; /* Forcer le texte en blanc */
    font-size: 1.2em;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    width: fit-content;
    margin: 20px auto;
    transition: background 0.3s ease, color 0.3s ease;
}

.btn-retour:hover {
    background-color: #5a9b8d;
    color: white !important; /* S'assurer que le texte reste bien blanc */
}
