.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: #333;
    color: white;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    text-align: left;
    max-width: 400px;
    margin: 0 auto;
}

    .cookie-banner p {
        margin: 0 0 10px;
        font-size: 0.9rem;
    }

    .cookie-banner a {
        color: #f28c38;
        text-decoration: underline;
    }

    .cookie-banner button {
        background: #f28c38;
        color: white;
        border: none;
        padding: 8px 16px;
        border-radius: 5px;
        cursor: pointer;
        font-size: 0.9rem;
    }

        .cookie-banner button:hover {
            background: #d97b30;
        }
