   * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: #e9ebee;
            color: #333;
            padding: 20px;
        }
        
        .section-container-004 {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
        }
        
        .section-title-004 {
            text-align: center;
            margin-bottom: 15px;
            color: #333;
            font-size: 2.2rem;
            font-weight: 700;
        }
        
        .section-subtitle-004 {
            text-align: center;
            margin-bottom: 40px;
            color: #555;
            font-size: 1.1rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.5;
        }
        
        /* Carousel Container */
        .carousel-container-004 {
            position: relative;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            padding: 30px;
            margin-bottom: 30px;
            border: 1px solid rgba(255, 255, 255, 0.3);
        }
        
        /* Carousel */
        .carousel-004 {
            position: relative;
            overflow: hidden;
            border-radius: 15px;
        }
        
        .carousel-track-004 {
            display: flex;
            transition: transform 0.5s ease-in-out;
            gap: 20px;
            padding: 10px 0;
        }
        
        .carousel-slide-004 {
            flex: 0 0 280px;
            height: 500px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
            transition: all 0.3s ease;
            position: relative;
        }
        
        .carousel-slide-004:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
        }
        
        .carousel-slide-004 img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        
        .slide-overlay-004 {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
            padding: 20px;
            color: white;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }
        
        .carousel-slide-004:hover .slide-overlay-004 {
            transform: translateY(0);
        }
        
        .slide-number-004 {
            position: absolute;
            top: 15px;
            right: 15px;
            background: rgba(24, 119, 242, 0.9);
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.1rem;
            box-shadow: 0 4px 15px rgba(24, 119, 242, 0.4);
        }
        
        /* Carousel Navigation */
        .carousel-nav-004 {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
            margin-top: 25px;
        }
        
        .carousel-btn-004 {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, #1877F2, #0d5dbd);
            border: none;
            color: white;
            font-size: 1.2rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(24, 119, 242, 0.3);
        }
        
        .carousel-btn-004:hover {
            transform: scale(1.1);
            box-shadow: 0 7px 20px rgba(24, 119, 242, 0.5);
        }
        
        .carousel-btn-004:disabled {
            background: #cccccc;
            cursor: not-allowed;
            transform: none;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .carousel-dots-004 {
            display: flex;
            gap: 10px;
        }
        
        .carousel-dot-004 {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #ddd;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .carousel-dot-004.active-004 {
            background: #1877F2;
            transform: scale(1.2);
        }
        
        /* Stats Section */
        .stats-container-004 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-top: 40px;
        }
        
        .stat-card-004 {
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 25px;
            text-align: center;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.3);
            transition: all 0.3s ease;
        }
        
        .stat-card-004:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
        }
        
        .stat-icon-004 {
            width: 60px;
            height: 60px;
            border-radius: 15px;
            background: linear-gradient(135deg, #1877F2, #0d5dbd);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            color: white;
            font-size: 1.5rem;
        }
        
        .stat-number-004 {
            font-size: 2rem;
            font-weight: 700;
            color: #1877F2;
            margin-bottom: 5px;
        }
        
        .stat-text-004 {
            color: #555;
            font-size: 0.95rem;
        }
        
        /* Success Banner */
        .success-banner-004 {
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            margin-top: 40px;
            border-left: 5px solid #1877F2;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
        }
        
        .success-title-004 {
            font-size: 1.5rem;
            color: #1877F2;
            margin-bottom: 10px;
            font-weight: 700;
        }
        
        .success-text-004 {
            color: #555;
            font-size: 1.1rem;
            margin-bottom: 20px;
        }
        
        .highlight-004 {
            display: inline-block;
            background: linear-gradient(135deg, #1877F2, #0d5dbd);
            color: white;
            padding: 8px 20px;
            border-radius: 25px;
            font-weight: 600;
            box-shadow: 0 4px 15px rgba(24, 119, 242, 0.3);
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .carousel-slide-004 {
                flex: 0 0 220px;
                height: 390px;
            }
            
            .section-title-004 {
                font-size: 1.8rem;
            }
            
            .stats-container-004 {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 480px) {
            .carousel-slide-004 {
                flex: 0 0 180px;
                height: 320px;
            }
            
            .carousel-container-004 {
                padding: 20px;
            }
            
            .stats-container-004 {
                grid-template-columns: 1fr;
            }
        }