/* COULEURS */
:root {
    --color-primary: #003CF6;
    --color-secondary: #043377;
}

/* Backgrounds */
header#header {
    background-color: var(--color-primary);
}
header#header #hero-banner {
    background: var(--color-secondary);
}
#page ul {list-style: disc inside;}

/* **************************************************************** */
/* Import font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&display=swap');

/* Base */
body {
    font-family: 'Inter', Arial, sans-serif !important;
    color: #1a1a1a !important;
}

/* H1 */
h1 {
    font-size: 2.6rem !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
    color: #0b2a4a !important;
    margin-bottom: 1rem !important;
    letter-spacing: -0.5px !important;
}

/* H2 */
h2 {
    font-size: 2rem !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;
    color: #123b6b !important;
    margin-top: 2rem !important;
    margin-bottom: 0.8rem !important;
    position: relative !important;
}

/* Barre sous H2 */
h2::after {
    content: "" !important;
    display: block !important;
    width: 50px !important;
    height: 4px !important;
    background: #2d6cdf !important;
    margin-top: 8px !important;
    border-radius: 2px !important;
}

/* H3 */
h3 {
    font-size: 1.4rem !important;
    font-weight: 600 !important;
    color: #2d6cdf !important;
    margin-top: 1.5rem !important;
    margin-bottom: 0.5rem !important;
}

/* H4 */
h4 {
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    color: #444 !important;
}

/* Responsive */
@media (max-width: 768px) {
    h1 { font-size: 2rem !important; }
    h2 { font-size: 1.6rem !important; }
    h3 { font-size: 1.2rem !important; }
}

/* Option bonus : centrage titre */
.page-title h1 {
    text-align: center !important;
}

/* Option bonus : effet bloc */
h1 {
    border-left: 6px solid #2d6cdf !important;
    padding-left: 15px !important;
}