
    #cookie-banner, #cookie-settings {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background-color: #222;
        color: #fff;
        text-align: center;
        padding: 20px;
        z-index: 9999;
    }

    #cookie-banner p, #cookie-settings p {
        margin: 10px 0;
    }

    .center {
        text-align: center;
    }

    #cookie-settings {
        display: none;
        background: #333;
    }

    button {
        margin: 5px;
        padding: 10px 20px;
        border: none;
        background: #006bb3;
        color: #fff;
        cursor: pointer;
        border-radius: 4px;
        font-size: 14px;
    }

    button:hover {
        background: #00508f;
    }

    .cookie-options-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
        margin-top: 15px;
        border-top: 1px solid #ccc;
        padding-top: 15px;
    }

    .cookie-option {
        width: 33%;
        margin-bottom: 15px;
        text-align: center;
    }

    .cookie-option label {
        font-size: 16px;
    }

    .cookie-option .description {
        font-size: 14px;
        color: #ccc;
        text-align: center;
    }

    #settings-cookies-toggle {
        background: #006bb3;
    }

    #settings-cookies-toggle:hover {
        background: #00508f;
    }

    #save-cookies {
        background: #006bb3;
        color: #fff;
        margin-top: 15px;
    }

    #save-cookies:hover {
        background: #00508f;
    }

    a {
        color: #58a6ff;
        text-decoration: none;
    }

    a:hover {
        text-decoration: underline;
    }

    #cookie-settings h3 {
        margin-top: 0;
    }

    @media (max-width: 768px) {
        .cookie-option {
            width: 100%;
        }

        #cookie-banner, #cookie-settings {
            padding: 15px;
            margin: 0;
            width: auto;
        }

        button {
            width: 95%;
            padding: 12px;
            font-size: 16px;
            margin: 0 auto;
        }

        #settings-cookies-toggle {
            margin-top: 15px;
        }
    }

