.scrolling-text-container {
    overflow: hidden;
    background-color: #ee3342;
    color: white;
    padding: 10px 0;
    position: relative;
}

.scrolling-text {
    white-space: nowrap;
    display: inline-block;
    padding-left: 100%;
    animation: scroll-left 15s linear infinite;
    font-size: 1.1rem;
    font-weight: 500;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-100%);
    }
}
