#fw-section-announcement-bar-dad65363-0970-462c-921e-a5ea350609fb {

/* Scrolling banner styles */
.banner-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #ff0000;
    color: #ffffff;
    font-size: 20px;
    font-weight: bold;
    padding: 10px 0;
    overflow: hidden;
    white-space: nowrap;
    z-index: 1000;
}

.banner-text {
    display: inline-block;
    padding-left: 100%;
    animation: scrollBanner 10s linear infinite;
}

@keyframes scrollBanner {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}
}