        /* Style pour la bannière de cookies */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: #333;
            color: white;
            padding: 20px;
            text-align: center;
            z-index: 1000;
            font-size: 1em;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
        }

        .cookie-banner p {
            margin: 0 10px 10px 10px;
            flex: 1;
            text-align: left;
            font-size: 0.9em;
        }

        .cookie-banner button {
            background-color: #004b1d;
            color: white;
            border: none;
            padding: 10px 20px;
            font-size: 0.9em;
            border-radius: 5px;
            cursor: pointer;
            margin: 10px;
        }

        .cookie-banner button:hover {
            background-color: green;
        }

        /* Adaptation responsive */
        @media (max-width: 768px) {
            .cookie-banner {
                flex-direction: column;
            }

            .cookie-banner p {
                text-align: center;
            }
        }