#cookie-consent {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 520px;
    max-width: 90%;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.25);
    padding: 22px 24px;
    font-family: Arial, sans-serif;
    z-index: 9999;
}

#cookie-consent h3{
    font-size:18px;
    margin:0 0 8px 0;
}

#cookie-consent p{
    font-size:14px;
    line-height:1.5;
    color:#444;
}

.cookie-buttons{
    display:flex;
    gap:10px;
    margin-top:15px;
}

.cookie-btn{
    flex:1;
    padding:10px;
    border-radius:8px;
    border:none;
    cursor:pointer;
    font-weight:bold;
}

.cookie-accept{
    background:#1fa4c6;
    color:white;
}

.cookie-decline{
    background:#e5e5e5;
}

#cookie-consent a{
    color:#1fa4c6;
    text-decoration:none;
}