/* ===== HERO SECTION ===== */
        .how-hero {
            position: relative;
            padding: 120px 0 80px;
            background: linear-gradient(135deg, #0b1120 0%, #19223f 50%, #2d1b4b 100%);
            overflow: hidden;
        }

        .how-hero .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            text-align: center;
            color: white;
            position: relative;
            z-index: 2;
        }

        .how-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 8px 20px;
            border-radius: 40px;
            margin-bottom: 30px;
            font-size: 0.9rem;
        }

        .how-badge i {
            color: #ffd700;
        }

        .how-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 20px;
        }

        .how-title span {
            background: linear-gradient(135deg, #ffd700, #ff8a5c);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .how-description {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
            color: rgba(255,255,255,0.9);
            line-height: 1.6;
        }

        /* ===== MAIN CONTENT ===== */
        .main-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 60px 20px;
        }

        /* For Students Section */
        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-header h2 {
            font-size: 2.5rem;
            font-weight: 800;
            color: #0b1120;
            margin-bottom: 15px;
        }

        .section-header .underline {
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #da0b4e, #4f46e5);
            margin: 0 auto;
            border-radius: 2px;
        }

        .section-header p {
            color: #64748b;
            max-width: 700px;
            margin: 20px auto 0;
            font-size: 1.1rem;
            line-height: 1.6;
        }

        /* Steps Grid */
        .steps-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-bottom: 80px;
        }

        .step-card {
            background: white;
            border-radius: 30px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 10px 30px -15px rgba(0,0,0,0.1);
            border: 1px solid #e9edf3;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }

        .step-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, #da0b4e, #4f46e5, #f59e0b);
            transform: scaleX(0);
            transition: transform 0.3s;
        }

        .step-card:hover::before {
            transform: scaleX(1);
        }

        .step-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px -15px rgba(218,11,78,0.2);
        }

        .step-number {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #da0b4e, #4f46e5);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            font-weight: bold;
            margin: 0 auto 25px;
        }

        .step-icon {
            font-size: 3rem;
            color: #da0b4e;
            margin-bottom: 20px;
        }

        .step-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: #0b1120;
        }

        .step-card p {
            color: #64748b;
            line-height: 1.6;
        }

        /* For Tutors Section */
        .tutors-section {
            background: linear-gradient(135deg, #0b1120, #19223f);
            border-radius: 50px;
            padding: 60px;
            margin: 80px 0;
            color: white;
        }

        .tutors-section .section-header h2 {
            color: white;
        }

        .tutors-section .section-header p {
            color: rgba(255,255,255,0.8);
        }

        .tutors-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 50px;
        }

        .tutor-step {
            text-align: center;
            padding: 30px;
            background: rgba(255,255,255,0.05);
            border-radius: 30px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.1);
            transition: all 0.3s;
        }

        .tutor-step:hover {
            transform: translateY(-5px);
            background: rgba(255,255,255,0.1);
        }

        .tutor-number {
            width: 50px;
            height: 50px;
            background: rgba(255,215,0,0.2);
            border: 2px solid #ffd700;
            color: #ffd700;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
            margin: 0 auto 20px;
        }

        .tutor-step i {
            font-size: 2.5rem;
            color: #ffd700;
            margin-bottom: 20px;
        }

        .tutor-step h4 {
            font-size: 1.3rem;
            margin-bottom: 10px;
        }

        .tutor-step p {
            color: rgba(255,255,255,0.8);
            line-height: 1.6;
        }

        /* Benefits Section */
        .benefits-section {
            margin: 80px 0;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .benefit-card {
            text-align: center;
            padding: 30px;
            background: white;
            border-radius: 30px;
            border: 1px solid #e9edf3;
            transition: all 0.3s;
        }

        .benefit-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px -12px rgba(0,0,0,0.1);
        }

        .benefit-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, rgba(218,11,78,0.1), rgba(79,70,229,0.1));
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }

        .benefit-icon i {
            font-size: 2rem;
            color: #da0b4e;
        }

        .benefit-card h4 {
            font-size: 1.2rem;
            margin-bottom: 10px;
            color: #0b1120;
        }

        .benefit-card p {
            color: #64748b;
            font-size: 0.95rem;
            line-height: 1.5;
        }

        /* Video Section */
        .video-section {
            background: white;
            border-radius: 40px;
            padding: 60px;
            margin: 80px 0;
            text-align: center;
            border: 1px solid #e9edf3;
        }

        .video-section h3 {
            font-size: 2rem;
            margin-bottom: 15px;
            color: #0b1120;
        }

        .video-section p {
            color: #64748b;
            max-width: 600px;
            margin: 0 auto 30px;
        }

        .video-placeholder {
            background: linear-gradient(135deg, #0b1120, #19223f);
            border-radius: 30px;
            padding: 80px;
            cursor: pointer;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }

        .video-placeholder:hover {
            transform: scale(1.02);
        }

        .video-placeholder i {
            font-size: 4rem;
            color: #ffd700;
            margin-bottom: 20px;
        }

        .video-placeholder p {
            color: white;
            margin-top: 15px;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, #da0b4e, #4f46e5);
            border-radius: 50px;
            padding: 60px;
            text-align: center;
            color: white;
            margin-top: 60px;
        }

        .cta-section h3 {
            font-size: 2rem;
            margin-bottom: 15px;
        }

        .cta-section p {
            max-width: 600px;
            margin: 0 auto 30px;
            font-size: 1.1rem;
            opacity: 0.9;
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .btn_primary, .btn_secondary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 35px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
        }

        .btn_primary {
            background: white;
            color: #da0b4e;
        }

        .btn_secondary {
            background: rgba(255,255,255,0.2);
            color: white;
            border: 1px solid rgba(255,255,255,0.3);
        }

        .btn_primary:hover, .btn_secondary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px -10px rgba(0,0,0,0.3);
        }

        /* Responsive */
        @media (max-width: 992px) {
            .steps-grid, .tutors-grid, .benefits-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .how-title {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 768px) {
            .steps-grid, .tutors-grid, .benefits-grid {
                grid-template-columns: 1fr;
            }
            
            .tutors-section {
                padding: 40px 25px;
            }
            
            .section-header h2 {
                font-size: 2rem;
            }
            
            .video-section {
                padding: 40px 25px;
            }
            
            .video-placeholder {
                padding: 40px 20px;
            }
            
            .cta-section {
                padding: 40px 25px;
            }
            
            .cta-section h3 {
                font-size: 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .how-title {
                font-size: 1.8rem;
            }
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .step-card, .tutor-step, .benefit-card {
            animation: fadeInUp 0.5s ease forwards;
            opacity: 0;
        }

        .step-card:nth-child(1) { animation-delay: 0.1s; }
        .step-card:nth-child(2) { animation-delay: 0.2s; }
        .step-card:nth-child(3) { animation-delay: 0.3s; }
        .tutor-step:nth-child(1) { animation-delay: 0.4s; }
        .tutor-step:nth-child(2) { animation-delay: 0.5s; }
        .tutor-step:nth-child(3) { animation-delay: 0.6s; }