.marketing-banner {
    position: fixed;
    bottom: -100%;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 100vw;
    background: #ffffff;
    color: white;
    padding: 20px;
    border-radius: 8px 8px 0 0;
    box-shadow: 0 -4px 10px rgba(0,0,0,0.3);
    text-align: center;
    z-index: 9999;
    transition: bottom 0.5s ease-in-out;
    color: white;
}



.marketing-banner.show {
    bottom: 20px;
}

.marketing-banner .banner-content h3 {
    margin: 0 0 10px 0;
}

.marketing-banner .banner-content p {
    margin: 0 0 15px 0;
}

.marketing-banner #close-banner {
    background: #5EB992;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 4px;
    color: white;
}