#cookie-banner{

position:fixed;

bottom:0;

left:0;

right:0;

background:#1f2937;

color:white;

padding:20px;

z-index:99999;

box-shadow:0 -4px 20px rgba(0,0,0,.25);

}

.cookie-content{

max-width:1200px;

margin:auto;

display:flex;

justify-content:space-between;

align-items:center;

gap:25px;

}

.cookie-content p{

margin-top:8px;

font-size:15px;

}

.cookie-buttons{

display:flex;

gap:10px;

}

.btn-secondary{

background:#ffffff22;

border:none;

padding:12px 22px;

color:white;

border-radius:6px;

cursor:pointer;

}

@media(max-width:768px){

.cookie-content{

flex-direction:column;

text-align:center;

}

}