 /* Global styles */
        :root {
            --primary-color: #2575fc;
            --secondary-color: #6a11cb;
            --dark-color: #2c3e50;
            --light-color: #f8f9fa;
            --success-color: #28a745;
            --th-color: #FFF0EB;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
        }
        
        /* Module styling */
        .module-container {
            border: 1px solid #e0e0e0;
            border-radius: 10px;
            padding: 2rem;
            margin-bottom: 2rem;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            background-color: white;
        }
        
        .module-title {
            text-align: center;
            margin-bottom: 2rem;
            position: relative;
            padding-bottom: 1rem;
        }
        
        .module-title:after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
        }
        
        /* Hero section */
        .hero-section {
            background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
            color: white;
            border-radius: 10px;
            padding: 3rem;
            margin-bottom: 2rem;
            background-size: 200% 200%;
            animation: gradientBG 15s ease infinite;
        }
                /* Hero section2 */
        .hero-section2 {
            background: linear-gradient(135deg, var(--th-color) 0%, var(--primary-color) 50%);
            color: white;
            border-radius: 30px;
            padding: 3rem;
            margin-bottom: 2rem;
            background-size: 200% 200%;
            animation: gradientBG 15s ease infinite;
        }
        @keyframes gradientBG {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        
        /* Stats section */
        .stat-card {
            text-align: center;
            padding: 1.5rem;
            border-radius: 10px;
            background-color: var(--light-color);
            height: 100%;
            border: 1px solid #e0e0e0;
            transition: transform 0.3s ease;
        }
        
        .stat-card:hover {
            transform: translateY(-5px);
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
        }
        
        .stat-title {
            font-size: 1rem;
            color: #6c757d;
        }
        
        /* Pricing cards */
        .hero-pricing-card {
            background-color: rgba(255, 255, 255, 0.95);
            border-radius: 10px;
            padding: 1.5rem;
            margin-bottom: 1rem;
            transition: all 0.3s ease;
            height: 100%;
            border: 1px solid rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(5px);
        }
        
        .hero-pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }
        
        .hero-pricing-card .price {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary-color);
        }
        
        .hero-pricing-card .plan-name {
            font-weight: 600;
            color: var(--dark-color);
            font-size: 1.25rem;
        }
        
        .hero-pricing-card .btn {
            margin-top: 1rem;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .hero-pricing-card .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .popular-badge {
            position: absolute;
            top: -10px;
            right: 20px;
            background-color: var(--success-color);
            color: white;
            padding: 0.25rem 1rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: bold;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        /* Responsive adjustments */
        @media (max-width: 767.98px) {
            .hero-section {
                padding: 2rem 1rem;
            }
            
            .module-container {
                padding: 1.5rem;
            }
            
            .hero-pricing-card {
                margin-bottom: 1.5rem;
            }
        }
        
        /* Animation */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .fade-in {
            animation: fadeIn 0.6s ease-out forwards;
        }
        
        /* Delay animations */
        .delay-1 { animation-delay: 0.2s; }
        .delay-2 { animation-delay: 0.4s; }
        .delay-3 { animation-delay: 0.6s; }