/* Page Mentions légales */
.mention-page {
    background: #000;
    color: #fff;
    min-height: 100vh;
    font-family: "utile", "brother-1816", sans-serif;
    padding: 2rem 0;
}

/* Titre */
.mention-title {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 3rem;
    font-family: "brother-1816", sans-serif;
}

/* Bloc de texte */
.mention-block {
    padding: 0;
}

.mention-text {
    font-size: 14px;
    line-height: 1.8;
    color: #fff;
    margin-bottom: 0;
    font-family: "utile", sans-serif;
}

/* Responsive */
@media (max-width: 991.98px) {
    .mention-title {
        font-size: 32px;
        margin-bottom: 2rem;
    }
    
    .mention-text {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .mention-title {
        font-size: 28px;
    }
    
    .mention-text {
        font-size: 14px;
        line-height: 1.6;
    }
}

