 * { margin: 0; padding: 0; box-sizing: border-box; }
        
        body { 
            font-family: 'Plus Jakarta Sans', sans-serif; 
            background: #f8fafc; 
            color: #334155; 
            line-height: 1.7; 
            overflow-x: hidden;
        }
        
        .container { width: min(1200px, 92%); margin: auto; }
        
        h1, h2, h3, h4 { 
            color: #0f172a; 
            font-weight: 700; 
            letter-spacing: -0.02em; 
        }

        /* Dynamic Scroll Entry Animations */
        .reveal-text { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
        .reveal-card { opacity: 0; transform: translateY(40px) scale(0.97); transition: all 0.7s cubic-bezier(0.25, 1, 0.5, 1); }
        .reveal-img { opacity: 0; transform: translateX(50px) scale(0.95); transition: all 1s cubic-bezier(0.25, 1, 0.5, 1); }
        
        .logic-item .reveal-img { transform: translateX(-50px) scale(0.95); }
        .active { opacity: 1; transform: translateY(0) translateX(0) scale(1); }

        /* Smooth Floating Animation for Images */
        @keyframes floatEffect { 
            0% { transform: translateY(0px); } 
            50% { transform: translateY(-15px); } 
            100% { transform: translateY(0px); } 
        }
        .float-img img { animation: floatEffect 5s ease-in-out infinite; }

        /* Section Spacing Architecture */
        section { padding: 120px 0; position: relative; }
        .section-title { text-align: center; font-size: 38px; margin-bottom: 50px; }
        .section-title span { color: #14b8a6; }

        /* 1. Hero Split Section Layout */
        .hero { background: linear-gradient(180deg, #f0fdfa 0%, #f8fafc 100%); padding-top: 150px; }
        .hero .container { display: flex; align-items: center; gap: 60px; }
        .h-text { flex: 1.2; }
        .h-text h1 { font-size: 56px; line-height: 1.15; margin-bottom: 24px; color: #0f172a; }
        .h-text h1 span { color: #14b8a6; }
        .h-text p { font-size: 18px; color: #475569; margin-bottom: 35px; max-width: 600px; }
        .h-img { flex: 0.8; text-align: center; }
        .h-img img { 
            width: 100%; 
            max-width: 480px; 
            border-radius: 24px; 
            box-shadow: 0 20px 40px -15px rgba(20, 184, 166, 0.15); 
        }

        /* 2. Benefit Premium Cards Section */
        .benefits { background: #ffffff; border-top: 1px solid #e2e8f0; border-bottom: 1px solid #e2e8f0; }
        .grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
        .card { 
            padding: 40px 30px; 
            background: #f8fafc; 
            border-radius: 16px; 
            border: 1px solid #e2e8f0; 
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .card:hover {
            transform: translateY(-8px);
            border-color: #14b8a6;
            background: #ffffff;
            box-shadow: 0 20px 30px -10px rgba(20, 184, 166, 0.12);
        }
        .card h3 { color: #0f172a; margin-bottom: 15px; font-size: 22px; display: flex; align-items: center; gap: 10px; }
        .card h3 i { color: #14b8a6; }
        .card p { color: #475569; font-size: 15px; }

        /* PPC Workflow Timeline Steps */
        .timeline-section { background: #f8fafc; }
        .timeline-container { max-width: 850px; margin: auto; display: flex; flex-direction: column; gap: 25px; }
        .timeline-step { 
            padding: 30px; 
            background: #ffffff; 
            border-radius: 16px; 
            border-left: 5px solid #14b8a6; 
            box-shadow: 0 4px 6px -1px rgba(0,0,0,0.02);
            transition: transform 0.3s ease;
        }
        .timeline-step:hover { transform: translateX(8px); }
        .timeline-step h4 { font-size: 20px; color: #0f172a; margin-bottom: 8px; }

        /* 3. Logic & Strategy Split Section (Using 2nd Image) */
        .logic { background: #ffffff; border-top: 1px solid #e2e8f0; border-bottom: 1px solid #e2e8f0; }
        .logic-item { display: flex; align-items: center; gap: 60px; }
        .logic-text { flex: 1.1; }
        .logic-text h2 { font-size: 36px; margin-bottom: 20px; color: #0f172a; }
        .logic-text p { font-size: 16px; color: #475569; margin-bottom: 20px; }
        .logic-img-wrapper { flex: 0.9; text-align: center; }
        .logic-img-wrapper img { 
            width: 100%; 
            max-width: 450px; 
            border-radius: 24px; 
            box-shadow: 0 20px 40px -15px rgba(15, 23, 42, 0.08); 
        }

        /* Performance Numbers Grid Section with Auto Counter Hooks */
        .stats-section { background: linear-gradient(180deg, #ffffff 0%, #f0fdfa 100%); text-align: center; }
        .stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 30px; margin-top: 20px; }
        .stat-box { padding: 35px 20px; background: #ffffff; border: 1px solid #e2e8f0; border-radius: 16px; }
        
        /* Fixed layout height shift bugs during quick number counting */
        .stat-box .num-wrapper { font-size: 48px; font-weight: 800; color: #14b8a6; line-height: 1.1; margin-bottom: 10px; display: inline-flex; justify-content: center; align-items: center; }
        .stat-box p { font-size: 15px; color: #475569; font-weight: 600; }

        /* 4. Dynamic Modern CTA Section Area */
        .cta-section { padding: 100px 0; text-align: center; background: #ffffff; }
        .cta-box { 
            padding: 60px 40px; 
            background: #ddf1ed; 
            border-radius: 30px; 
            border: 1px solid #99f6e4; 
            max-width: 1000px;
            margin: auto;
            box-shadow: 0 15px 35px -15px rgba(20, 184, 166, 0.15);
        }
        .cta-box h2 { font-size: 38px; margin-bottom: 16px; color: #0f172a; }
        .cta-box p { font-size: 16px; color: #334155; max-width: 750px; margin: 0 auto 35px auto; }
        
        /* Interactive Buttons Shape Configuration */
        .btn-row { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
        .btn { 
            padding: 16px 38px; 
            border-radius: 12px; 
            font-weight: 700; 
            cursor: pointer; 
            border: none; 
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); 
            font-size: 16px;
        }
        .btn-teal { background: #14b8a6; color: #ffffff; box-shadow: 0 4px 14px rgba(20, 184, 166, 0.3); }
        .btn-teal:hover { background: #0d9488; transform: translateY(-4px); box-shadow: 0 6px 20px rgba(20, 184, 166, 0.4); }
        
        .btn-white { background: #ffffff; color: #14b8a6; border: 1px solid #cbd5e1; }
        .btn-white:hover { background: #f1f5f9; transform: translateY(-4px); border-color: #14b8a6; }

        /* ==========================================
           ALL SCREEN RESPONSIVE BYPASS RULES
        ========================================== */
        @media (max-width: 992px) {
            section { padding: 90px 0; }
            .hero { padding-top: 130px; }
            .hero .container, .logic-item { 
                flex-direction: column !important; 
                text-align: center; 
                gap: 45px; 
            }
            .h-text p, .logic-text p { margin-left: auto; margin-right: auto; }
            
            /* Responsive Order: Force images to go down on mobile screens */
            .h-img { order: 1 !important; }
            .logic-img-wrapper { order: 1 !important; }
            .h-text, .logic-text { order: 0 !important; }

            .h-text h1 { font-size: 42px; }
            .section-title { font-size: 32px; }
        }

        @media (max-width: 768px) {
            section { padding: 70px 0; }
            .h-text h1 { font-size: 34px; }
            .cta-box { padding: 40px 20px; border-radius: 20px; }
            .cta-box h2 { font-size: 26px; }
            .btn-row { flex-direction: column; gap: 12px; }
            .btn { width: 100%; text-align: center; }
        }

         .Banner {
        margin-bottom: 0px;
        position: relative;
        background: linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.85)), url('imgs/banner.avif') no-repeat center center/cover;
        height: 350px;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 0 20px;
    }

    .hero-content {
        position: relative;
        z-index: 2;
        max-width: 800px;
    }

    .hero-content h1 {
        font-size: 42px;
        font-weight: 800;
        letter-spacing: 1px;
        margin-bottom: 15px;
        text-transform: uppercase;
        color: white;
    }

    .hero-content h2{
        font-size: 28px;
        font-weight: 600;
        letter-spacing: 1px;
        margin-bottom: 0px;
        color: #cbd5e1;}
