        .banner-container {
            position: relative;
            width: 90%;
            max-width: 40rem;
            margin: 0 auto;
            margin-top: 2rem;
            overflow: hidden;
            aspect-ratio: 3/1;
        }

        .banner-slides {
            display: flex;
            width: 100%;
            height: 100%;
            transition: transform 0.5s ease-in-out;
        }

        .banner-slide {
            min-width: 100%;
            height: 100%;
        }

        .banner-slide img {
            width: 100%;
            height: 100%;
            /* object-fit: cover; */
            display: block;
            cursor:pointer
        }

        .banner-control {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: rgba(0, 0, 0, 0.5);
            color: white;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            transition: background-color 0.3s;
        }

        .banner-control:hover {
            background-color: rgba(0, 0, 0, 0.8);
        }

        .banner-prev {
            left: 15px;
        }

        .banner-next {
            right: 15px;
        }

        .banner-indicators {
            position: absolute;
            bottom: 15px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 8px;
        }

        .banner-indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .banner-indicator.active {
            background-color: white;
        }