* {
    font-family: 'Inter', Arial, sans-serif;
    margin: 0;
    padding: 0;
}
/* Styles généraux */
body {
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    text-align: center;
}

/* Conteneur principal */
.container {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: left;
}

/* Styles des sections */
.mention-section {
    margin-bottom: 30px;
    padding: 20px;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.mention-section h2 {
    color: #0044cc;
    margin-bottom: 10px;
}

.mention-section p {
    font-size: 1.1em;
    line-height: 1.6;
    color: #333;
}

.mention-section ul {
    list-style-type: disc;
    padding-left: 20px;
}

.mention-section a {
    color: #d32f2f;
    text-decoration: none;
    font-weight: bold;
}

.mention-section a:hover {
    text-decoration: underline;
}

/* Lien stylisé */
a {
    color: #0044cc;
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #0033aa;
    text-decoration: underline;
}
