    /* Bannière de cookies */
    .cookie-banner {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: rgba(0, 158, 96, 0.95); /* Vert du drapeau du Burkina Faso */
        color: white;
        padding: 1rem;
        box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.1);
        display: none;
        z-index: 1000;
        border-top: 3px solid #EF2B2D; /* Rouge du drapeau */
    }

    .cookie-banner.active {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .cookie-banner p {
        margin: 0;
        padding-right: 1rem;
        font-size: 0.95rem;
        line-height: 1.4;
    }

    .cookie-banner .cookie-buttons {
        display: flex;
        gap: 0.8rem;
    }

    .cookie-banner button {
        padding: 0.6rem 1.2rem;
        border: none;
        border-radius: 4px;
        cursor: pointer;
        font-weight: 500;
        transition: all 0.3s ease;
        white-space: nowrap;
    }

    .cookie-banner .accept-cookies {
        background-color: #EF2B2D; /* Rouge du drapeau */
        color: white;
    }

    .cookie-banner .accept-cookies:hover {
        background-color: #d42426;
        transform: translateY(-2px);
    }

    .cookie-banner .decline-cookies {
        background-color: #FCD116; /* Jaune du drapeau */
        color: #000;
        border: 1px solid #e5bc14;
    }

    .cookie-banner .decline-cookies:hover {
        background-color: #e5bc14;
        transform: translateY(-2px);
    }

    /* Responsive design */
    @media (max-width: 768px) {
        .cookie-banner {
            flex-direction: column;
            text-align: center;
            padding: 1rem;
        }

        .cookie-banner p {
            padding-right: 0;
            margin-bottom: 1rem;
        }

        .cookie-banner .cookie-buttons {
            width: 100%;
            justify-content: center;
            flex-wrap: wrap; /* Permet aux boutons de se réorganiser */
        }

        .cookie-banner button {
            padding: 0.8rem 1.5rem;
            font-size: 0.9rem;
            width: 45%; /* Légèrement plus petit pour tenir sur un seul écran */
            margin-bottom: 1rem; /* Ajout de marge entre les boutons */
        }
    }

    /* Pour les très petits écrans (moins de 380px) */
    @media (max-width: 380px) {
        .cookie-banner .cookie-buttons {
            flex-direction: column;
            gap: 0.5rem;
        }

        .cookie-banner button {
            width: 100%;
            padding: 0.8rem 1.2rem;
            font-size: 0.8rem;
        }
    }