
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Arial', sans-serif;
            background-color: #f5f5f5;
        }
        
        .banner-container {
            background-color: #31302F;
            padding: 12px 0;
            overflow: hidden;
            position: relative;
            width: 100%;
        }
        
        .banner-content {
            display: flex;
            white-space: nowrap;
            animation: scroll-left 30s linear infinite;
        }
        
        .banner-item {
            display: inline-flex;
            align-items: center;
            padding: 0 20px;
            color: white;
            font-size: 16px;
            font-weight: 500;
        }
        
        .banner-item .highlight {
            color: #E5C15E;
            font-weight: bold;
            margin: 0 5px;
        }
        
        .delivery-icon {
            margin-right: 8px;
            color: #E5C15E;
        }
        
        @keyframes scroll-left {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }
        
        /* Pause animation on hover */
        .banner-container:hover .banner-content {
            animation-play-state: paused;
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .banner-item {
                font-size: 14px;
            }
        }
    