#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    text-align: center;
    font-family: 'Century Gothic', sans-serif;
    color: #333;
    background: #f5e1e6;
    z-index: 1000;
    box-shadow: 0 -2px 5px rgba(0,0,0,0.1);
    display: none;
}
#cookie-banner p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    font-weight: normal;
}
#cookie-banner a {
    color: #e4157e;
    text-decoration: underline;
}
#cookie-banner button {
    padding: 8px 16px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    font-family: 'Century Gothic', sans-serif;
    background: #e4157e;
    color: white;
    font-weight: bold;
    transition: background 0.3s ease;
}
#cookie-banner button:hover {
    background: #c1126e;
}
@media (max-width: 600px) {
    #cookie-banner {
        padding: 10px;
    }
    #cookie-banner p {
        font-size: 12px;
    }
    #cookie-banner button {
        padding: 6px 12px;
        font-size: 12px;
    }
}