.cookies-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #27466f;
    color: white;
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}
.cookies-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.cookies-content>p
{
color:white;
}
.cookies-buttons {
    display: flex;
    gap: 10px;
    margin-left: 20px;
}
.cookies-btn {
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    border-radius: 4px;
}
.cookies-btn.accept {
    background: #4CAF50;
    color: white;
}
.cookies-btn.reject {
    background: #f44336;
    color: white;
}