#cookieConsent{
    position:fixed;
    bottom:20px;
    left:20px;
    right:20px;
    max-width:900px;
    margin:auto;
    background:#ffffff;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.25);
    padding:20px;
    z-index:999999;
    display:none;
    animation:slideUp .5s ease;
}

.cookie-content{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
}

.cookie-icon{
    font-size:45px;
}

.cookie-text{
    flex:1;
}

.cookie-text h4{
    margin:0 0 8px;
    font-size:22px;
}

.cookie-text p{
    margin:0;
    color:#555;
    line-height:1.7;
}

.cookie-buttons{
    display:flex;
    gap:10px;
}

.accept-btn{
    background:#28a745;
    color:#fff;
    border:none;
    padding:12px 30px;
    border-radius:8px;
    cursor:pointer;
    font-size:16px;
}

.reject-btn{
    background:#e53935;
    color:#fff;
    border:none;
    padding:12px 30px;
    border-radius:8px;
    cursor:pointer;
    font-size:16px;
}

.accept-btn:hover{
    background:#1d8f39;
}

.reject-btn:hover{
    background:#c62828;
}

@keyframes slideUp{

from{
transform:translateY(100%);
opacity:0;
}

to{
transform:translateY(0);
opacity:1;
}

}

@media(max-width:768px){

.cookie-content{
flex-direction:column;
text-align:center;
}

.cookie-buttons{
width:100%;
}

.cookie-buttons button{
width:100%;
}

}