/* ========================================
   MENTIONS LÉGALES - CSS
   ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #ffffff;
    color: #2d2d2d;
    overflow-x: hidden;
}

.montserrat-normal {
    font-family: "Montserrat", sans-serif;
    font-weight: normal;
}

.poppins-bold {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
}


/* ========================================
   MAIN CONTENT
   ======================================== */

.mentions-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
}

.mentions-section {
    margin-bottom: 50px;
}

.mentions-section h2 {
    font-size: 28px;
    color: #202a37;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid #f7ca5a;
    display: inline-block;
}

.mentions-section h3 {
    font-size: 22px;
    color: #549be3;
    margin-top: 30px;
    margin-bottom: 15px;
}

.mentions-section p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #4a4a4a;
}

.mentions-section strong {
    color: #202a37;
    font-weight: 600;
}

/* ========================================
   INFO BOX
   ======================================== */

.info-box {
    background-color: #f8f9fa;
    border-left: 4px solid #549be3;
    padding: 20px;
    margin: 25px 0;
    border-radius: 4px;
}

.info-box p {
    margin-bottom: 8px;
}

.info-box p:last-child {
    margin-bottom: 0;
}

.highlight {
    background-color: #fff9e6;
    padding: 2px 6px;
    border-radius: 3px;
    color: #917c47;
    font-weight: 600;
}

/* ========================================
   LIENS
   ======================================== */

.mentions-content a {
    color: #549be3;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.mentions-content a:hover {
    color: #202a37;
    text-decoration: underline;
}

/* ========================================
   LISTES
   ======================================== */

.mentions-content ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.mentions-content ul li {
    margin-bottom: 10px;
    line-height: 1.6;
}

/* ========================================
   DATE DE MISE À JOUR
   ======================================== */

.update-date {
    text-align: center;
    padding: 30px 20px;
    background-color: #f8f9fa;
    border-top: 1px solid #e5e7eb;
    margin-top: 60px;
}

.update-date p {
    font-size: 14px;
    color: #6b7280;
    font-style: italic;
}

/* ========================================
   RESPONSIVE
   ======================================== */

/* Tablettes (max 768px) */
@media screen and (max-width: 768px) {
    .header-mentions h1 {
        font-size: 36px;
    }

    .header-mentions p {
        font-size: 16px;
    }

    .mentions-content {
        padding: 40px 15px;
    }

    .mentions-section h2 {
        font-size: 24px;
    }

    .mentions-section h3 {
        font-size: 20px;
    }

    .mentions-section p {
        font-size: 15px;
    }

    .info-box {
        padding: 15px;
    }
}

/* Smartphones (max 576px) */
@media screen and (max-width: 576px) {
    .header-mentions {
        min-height: 35vh;
        padding: 30px 15px;
    }

    .header-mentions h1 {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .header-mentions p {
        font-size: 14px;
    }

    .mentions-content {
        padding: 30px 12px;
    }

    .mentions-section {
        margin-bottom: 40px;
    }

    .mentions-section h2 {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .mentions-section h3 {
        font-size: 18px;
        margin-top: 25px;
        margin-bottom: 12px;
    }

    .mentions-section p {
        font-size: 14px;
        line-height: 1.7;
    }

    .info-box {
        padding: 12px;
        margin: 20px 0;
    }

    .mentions-content ul {
        margin-left: 20px;
    }

    .update-date {
        padding: 20px 15px;
        margin-top: 40px;
    }

    .update-date p {
        font-size: 12px;
    }
}

/* Petits smartphones (max 400px) */
@media screen and (max-width: 400px) {
    .header-mentions h1 {
        font-size: 24px;
    }

    .mentions-section h2 {
        font-size: 20px;
    }

    .mentions-section h3 {
        font-size: 17px;
    }

    .mentions-section p {
        font-size: 13px;
    }
}