html, body {
            height: 100%;
            margin: 0;
        }

        body {
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }

        main {
            flex: 1 0 auto; /* occupe l'espace restant */
        }

        footer.sticky-footer {
            flex-shrink: 0;      /* ne se compresse jamais */
            font-size: 14px;     /* taille de police fixe en pixels */
            line-height: 1.5;    /* spacing interne */
            background-color: #212529; /* même que bg-dark si besoin */
        }

        footer.sticky-footer p {
            margin: 0;           /* supprime marge par défaut */
        }