footer {
    background: linear-gradient(to right, #b3b3b3, #7f849e);
    text-align: center;
    padding: 10px 20px;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
    border-top: 1px solid #eaeaea;
    opacity: 0.7;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
}

footer p {
    margin-left: 50px;
}

footer a {
    color: #007BFF;
    text-decoration: none;
    margin-left: 20px;
}

footer a:hover {
    text-decoration: underline;

}

#cookie-info-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #333;
    color: #fff;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
    font-size: 14px;
}

#cookie-info-banner a {
    color: #a4d4ff;
    text-decoration: underline;
}

#cookie-info-ok {
    background-color: #555;
    color: #fff;
    border: none;
    padding: 6px 12px;
    cursor: pointer;
    border-radius: 4px;
}

#cookie-info-ok:hover {
    background-color: #777;
}