
        .bg-rouge {
            background-color: #A00000 !important;
        }

        .navbar-nav .nav-link:hover {
            background-color: #7a0000;
            color: #fff;
            border-radius: 4px;
        }

        .image-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 2rem;
        }

        .image-links img {
            width: 120px;
            height: auto;
            border-radius: 6px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .image-links img:hover {
            transform: scale(1.05);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }

        @media (max-width: 767.98px) {
        .image-links img {
            width: 80% !important;
            height: auto;
            margin: 0 auto;
            display: block;
        }
        }

        .large-image {
            width: calc(6 * 120px + 5 * 10px);
            /* 6 images + 5 gaps */
            max-width: 100%;
            margin: 2rem auto;
        }

        .large-image img {
            width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }

        /* Réduction de l'interligne sur petits écrans uniquement */
        .brand-break {
        display: block;
        margin-top: -0.3rem; /* Ajuste selon ton besoin */
        font-size: 0.95rem;   /* Tu peux aussi réduire légèrement la taille si souhaité */
        line-height: 1.1;
        }
