 .cookie-icon {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .cookie-icon svg {
            display: block;
            vertical-align: middle;
        }



       .cookie-banner {
    position: fixed;
    bottom: 0;
    width: 100%;
/*background: linear-gradient(45deg, #1a1a1a, #2c2c2c);*/
    background: linear-gradient(45deg, #1a1a1a, #056aa9);
    
    color: #fff;
    padding: 2rem;
    z-index: 9999;
    font-family: 'Montserrat', sans-serif;
}

.cookie-content {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-icon {
    font-size: 2.5rem;
    opacity: 0.8;
}

.cookie-text {
    flex: 1;
    font-size: 1rem;
}

.cookie-text p {
    margin: 0;
}

.cookie-text small {
    display: block;
    margin-top: 5px;
    color: #ccc;
}

.cookie-text a {
    color: #ff3b3b;
    text-decoration: none;
}

.cookie-text a:hover {
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 10px;
}

.btn-accept {
    background: #e53935;
    border: none;
    padding: 10px 20px;
    color: #fff;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
}

.btn-accept:hover {
    background: #c62828;
}

.btn-more {
    background: transparent;
    border: 1px solid #aaa;
    padding: 10px 20px;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
}

.btn-more:hover {
    background: #444;
}