/* Styles spécifiques pour la page Mentions Légales */

.mentions-legales {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    background-color: #fffef8;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.mentions-legales h1 {
    text-align: center;
    font-family: 'Syne', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: #1d6154;
    margin-bottom: 30px;
}

.mentions-legales .section {
    margin-bottom: 25px;
}

.mentions-legales .section h2 {
    font-family: 'Syne', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #1d6154;
    margin-bottom: 10px;
}

.mentions-legales .section p {
    font-family: 'Work Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 10px;
}

.mentions-legales .section a {
    color: #1d6154;
    text-decoration: none;
}

.mentions-legales .section a:hover {
    text-decoration: underline;
}

/* Responsivité spécifique pour Mentions Légales */

@media (max-width: 768px) {
    .mentions-legales {
        margin: 20px auto;
        padding: 15px;
    }

    .mentions-legales h1 {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .mentions-legales .section h2 {
        font-size: 20px;
    }

    .mentions-legales .section p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .mentions-legales {
        margin: 10px auto;
        padding: 10px;
    }

    .mentions-legales h1 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .mentions-legales .section h2 {
        font-size: 18px;
    }

    .mentions-legales .section p {
        font-size: 13px;
    }
}