    #cookie-banner {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: #f9f9f9;
        border-top: 1px solid #ccc;
        box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
        font-family: Arial, sans-serif;
        z-index: 9999;
        padding: 20px;
        display: none;
    }

    #cookie-banner h4 {
        margin-top: 0;
        margin-bottom: 10px;
        font-size: 16px;
    }

    /* Three columns layout */
    .cookie-columns {
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
    }

    .cookie-column {
        flex: 1;
        min-width: 200px;
    }

    .cookie-column label {
        display: block;
        font-weight: bold;
        margin-bottom: 5px;
    }

    .cookie-column .description {
        font-size: 12px;
        color: #666;
        line-height: 1.4;
    }

    /* Buttons at bottom */
    .cookie-buttons {
        margin-top: 15px;
    }

    .cookie-buttons button {
        margin-right: 10px;
        padding: 8px 16px;
        font-size: 14px;
        border: none;
        border-radius: 3px;
        cursor: pointer;
    }

    .accept-all {
        background: rgb(13, 100, 107);
        color: white;
    }

    .accept-selected {
        background: #666;
        color: white;
    }

    /* Link — #117880 on #f9f9f9 = 4.96:1, passes WCAG 1.4.3 AA */
    #cookie-banner a {
        font: inherit;
        color: #117880;
    }