  .banner-container {
            width: 100%;
            overflow: hidden;
            position: relative;
        }

        .banner-wrapper {
            display: flex;
            transition: transform 0.5s ease;
        }

        .banner-slide {
            min-width: 100%;
            height: 32.5rem;
        }

        .banner-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .banner-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            background: rgba(0, 0, 0, 0.5);
            color: white;
            border: none;
            cursor: pointer;
            font-size: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s;
            z-index: 10;
        }

        .banner-btn:hover {
            background: rgba(0, 0, 0, 0.8);
        }

        .banner-btn.prev {
            left: 20px;
        }

        .banner-btn.next {
            right: 20px;
        }

        .banner-dots {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
        }

        .banner-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: background 0.3s;
        }

        .banner-dot.active {
            background: white;
        }