

ul.nav-menu {

  display: block !important;

}




.demo-btn-margin .btn{margin-bottom:6px}

/* Cookie Consent Banner */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #2c3e50;
    color: #fff;
    padding: 15px 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
    font-size: 14px;
}
#cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
#cookie-banner p {
    margin: 5px 0;
}
#cookie-banner-actions {
    display: flex;
    gap: 10px;
}
#cookie-banner .btn-accept {
    background: #2ecc71;
    color: white;
    border: none;
    padding: 8px 15px;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.3s;
}
#cookie-banner .btn-accept:hover {
    background: #27ae60;
}
#cookie-banner .link-policy {
    color: #3498db;
    text-decoration: underline;
    cursor: pointer;
}
@media (max-width: 768px) {
    #cookie-banner-content {
        flex-direction: column;
        text-align: center;
    }
    #cookie-banner-actions {
        margin-top: 10px;
    }
}