#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #0d3e66;
    color: #ffffff;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 -4px 10px rgba(0,0,0,0.3);
    z-index: 9999;
    font-family: Arial, sans-serif;
    height: 100px;
}

#cookie-banner p {
    margin: 0;
    font-size: 20px;
    max-width: 70%;
}

#cookie-banner a {
    color: #d50c3d;
    text-decoration: underline;
}

.cookie-buttons button {
    background: #d50c3d;
    border: none;
    color: #fff;
    padding: 20px 28px;
    font-size: 25px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.cookie-buttons button:hover {
    background: #b00a31;
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
    #cookie-banner {
        flex-direction: column;
        text-align: center;
        height: 400px;
    }

    #cookie-banner p {
        max-width: 100%;
        margin-bottom: 10px;
    }
}