.banner-container {
            display: flex;
            flex-direction: column; /* Stack the items vertically */
            gap: 0; /* REMOVED SPACING BETWEEN BANNERS */
            width: 100%; /* Ensure the container uses full width */
            margin: 0; /* Remove default margins */
            padding: 0; /* Remove padding */
        }

        /* 2. Styling for each Image (Banner) */
        .banner-container img {
            width: 100%; /* Image will take up the full width */
            height: auto; /* Maintain aspect ratio */
            display: block;
            /* Optional: Removing box-shadow and border-radius for a cleaner, full-width look */
        }