#cookie-consent{
    position:fixed;
    left:20px;
    right:20px;
    bottom:20px;
    z-index:999999;
}

.cookie-box{
    background:rgba(255,255,255,.92);
    backdrop-filter:blur(12px);
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.15);

    display:flex;
    align-items:center;
    gap:20px;

    padding:20px 25px;
}

.cookie-icon{
    font-size:40px;
}

.cookie-content{
    flex:1;
}

.cookie-content h4{
    margin-bottom:8px;
    color:#003366;
}

.cookie-content p{
    margin:0;
    line-height:1.7;
}

.cookie-actions{
    display:flex;
    gap:10px;
}

.btn-accept{
    background:#0066cc;
    color:#fff;
    border:none;
    padding:12px 24px;
    border-radius:12px;
    cursor:pointer;
}

.btn-reject{
    background:#e5e7eb;
    color:#333;
    border:none;
    padding:12px 24px;
    border-radius:12px;
    cursor:pointer;
}

@media(max-width:768px){

.cookie-box{
    flex-direction:column;
    text-align:center;
}

}