/* ============================
   CANEVAS GLOBAL CDM — STYLE.CSS
   ============================ */

/* TYPOGRAPHIE */
body {
    font-family: Inter, sans-serif;
    font-size: 17px;
    color: #333;
    margin: 0;
    padding: 0;
    background: #FFFFFF;
}

h1.page-title {
    font-size: 32px;
    font-weight: 800;
    color: #2E5CCF;
    margin: 32px 0;
}

h2.section-title {
    font-size: 26px;
    font-weight: 700;
    color: #2E5CCF;
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 32px 0;
}

h3 {
    font-size: 22px;
    font-weight: 600;
    color: #2E5CCF;
    margin: 24px 0;
}

/* MINI-SVG */
.icon-h2 {
    width: 26px;
    height: 18px;
    display: inline-block;
    margin-right: 8px;
}

/* CONTENEUR GLOBAL */
.page-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* SECTIONS */
.section-block {
    margin-bottom: 60px;
}

.section-intro {
    font-size: 17px;
    margin: 12px 0 24px 0;
}

/* BOUTONS */
.btn-primary {
    display: inline-block;
    background: #2E5CCF;
    color: #fff;
    padding: 12px 22px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
}

.btn-primary:hover {
    background: #1d47a8;
}

/* BARRE ROUGE SUPÉRIEURE */
.topbar {
    background: #C8102E;
    color: #fff;
    padding: 6px 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
}

.topbar a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

/* HEADER BLEU QUÉBEC */
.main-header {
    background: #2E5CCF;
    padding: 14px 0;
}

.header-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo {
    height: 48px;
}

/* FOOTER */
footer {
    background: #F5F5F5;
    padding: 40px 0;
    color: #333;
}

.footer-columns {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-col {
    flex: 1 1 280px;
    min-width: 260px;
}

.footer-col h3 {
    font-size: 22px;
    font-weight: 700;
    color: #2E5CCF;
    margin-bottom: 12px;
}

.footer-col p,
.footer-col a {
    font-size: 18px;
    line-height: 1.5;
    color: #333;
}

.footer-bottom {
    text-align: center;
    font-size: 18px;
    padding-top: 25px;
    margin-top: 30px;
    border-top: 1px solid #DDD;
}

/* MOBILE-FIRST */
@media (max-width: 768px) {

    .page-container {
        margin: 30px auto;
        padding: 0 16px;
    }

    .footer-columns {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }

    .footer-col {
        width: 100%;
    }

    .footer-bottom {
        font-size: 17px;
        margin-top: 20px;
        padding-top: 20px;
    }
}
