.carousel-container {
            width: 80%;
            /* height: 250px; */
            height: 490px;
            margin: 0 auto;
            position: relative;
            perspective: 1000px;
        }
        
        .carousel {
            width: 100%;
            height: 100%;
            position: relative;
            transform-style: preserve-3d;
            transition: transform 1s ease;
        }
        
        .carousel-item {
            position: absolute;
            width: 60%;
            /* height: 200px; */
            height: 400px;
            left: 20%;
            top: 0;
            /* background: linear-gradient(45deg, #409EFF, #64b5f6); */
            background: #ffffff;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #666666;
            font-size: 24px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            transition: all 0.5s ease;
            opacity: 0.5;
            transform: scale(0.8);
        }
        
        .carousel-item.active {
            opacity: 1;
            transform: scale(1) translateZ(0);
            z-index: 10;
        }
        
        .carousel-item.prev {
            transform: scale(0.9) translateX(-75%) translateZ(-100px);
            opacity: 0.7;
        }
        
        .carousel-item.next {
            transform: scale(0.9) translateX(75%) translateZ(-100px);
            opacity: 0.7;
        }
        
        .carousel-indicators {
            position: absolute;
            bottom: 10px;
            left: 0;
            right: 0;
            text-align: center;
            z-index: 15;
        }
        
        .indicator {
            display: inline-block;
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            margin: 0 5px;
            cursor: pointer;
        }
        
        .indicator.active {
            background-color: white;
        }
        
        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.5);
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            z-index: 15;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            color: #333;
        }
        
        .carousel-btn:hover {
            background: rgba(255, 255, 255, 0.8);
        }
        
        .carousel-btn.prev {
            left: 10px;
        }
        
        .carousel-btn.next {
            right: 10px;
        }