 * { margin: 0; padding: 0; box-sizing: border-box; }
        
        body { 
            font-family: 'Plus Jakarta Sans', sans-serif; 
            background: #ffffff; /* User defined beige background */
            color: #334155; /* Dark slate for perfect readability */
            line-height: 1.6; 
            overflow-x: hidden; 
        }
        
        .container { width: min(1200px, 90%); margin: auto; }
        
        /* Smooth Scroll Entry Animations */
        .reveal { 
            opacity: 0; 
            transform: translateY(40px); 
            transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1); 
        }
        .active { opacity: 1; transform: translateY(0); }
        
        /* Smooth Floating Animation for Images */
        @keyframes float { 
            0% { transform: translateY(0px); } 
            50% { transform: translateY(-20px); } 
            100% { transform: translateY(0px); } 
        }
        .float-img { animation: float 5s ease-in-out infinite; }

        /* Section Layout Spacing */
        section { padding: 100px 0; }

        /* 1. Hero Split Section */
        .hero { display: flex; align-items: center; gap: 60px;  }
        .h-text { flex: 1; }
        .h-text h1 { font-size: 56px; line-height: 1.1; margin-bottom: 25px; font-weight: 800; letter-spacing: -2px; color: #0f172a; }
        .h-text h1 span { color: #DA2C43; } /* User defined crimson red */
        .h-text p { font-size: 18px; color: #475569; margin-bottom: 20px; }
        .h-img { flex: 1; text-align: center; }
        .h-img img { 
            width: 100%; 
            max-width: 500px; 
            border-radius: 24px; 
            box-shadow: 0 25px 50px -12px rgba(0,0,0,0.1); 
        }

        /* 2. Pillars Strategic Cards */
        .grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
        .card { 
            padding: 40px; 
            background: #f8f8ed; 
            border-radius: 20px; 
            border: 1px solid #cbd5e1; 
            transition: all 0.3s ease; 
        }
        .card:hover { 
            transform: translateY(-5px); 
            border-color: #DA2C43; /* Hover border change */
            box-shadow: 0 20px 40px rgba(218, 44, 67, 0.12); 
        }
        .card h3 { color: #DA2C43; margin-bottom: 15px; font-size: 22px; font-weight: 700; }
        .card p { color: #475569; font-size: 15px; }

        /* 3. Strategy Timeline Roadmap Box */
        .s-box { background: #f8f8ed;; padding: 60px; border-radius: 24px; border: 1px solid #e2e8f0; box-shadow: 0 10px 30px rgba(0,0,0,0.02); }
        .s-box h2 { font-size: 38px; font-weight: 800; margin-bottom: 20px; color: #0f172a; }
        .roadmap-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 25px; margin-top: 40px; }
        .roadmap-step { background: #f8fafc; padding: 25px; border-radius: 16px; border-left: 4px solid #DA2C43; border-top: 1px solid #e2e8f0; border-right: 1px solid #e2e8f0; border-bottom: 1px solid #e2e8f0; }
        .roadmap-step h4 { color: #DA2C43; margin-bottom: 10px; font-size: 18px; }
        .roadmap-step p { font-size: 14px; color: #64748b; }

        /* 4. Advanced Analytics Data Layout */
        .analytics { background: #ffffff; border-top: 1px solid #e2e8f0; border-bottom: 1px solid #e2e8f0; }
        .flex-box { display: flex; gap: 60px; align-items: center; }
        .analytics-text h2 { font-size: 42px; font-weight: 800; margin-bottom: 20px; letter-spacing: -1px; color: #0f172a; }
        .analytics-text p { color: #475569; font-size: 16px; margin-bottom: 15px; }

        /* 5. Conversion Lifecycle Functional Grid */
        .lifecycle { text-align: center; }
        .lifecycle h2 { font-size: 42px; font-weight: 800; margin-bottom: 15px; color: #0f172a; }
        .lifecycle > p { color: #475569; max-width: 600px; margin: 0 auto 40px; }
        .life-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; margin-top: 40px; }
        .life-card { 
            padding: 35px 25px; 
            background: #f8f8ed; 
            border-radius: 20px; 
            border: 1px solid #cbd5e1; 
            text-align: center; 
            transition: border-color 0.3s ease;
        }
        .life-card:hover { border-color: #DA2C43; }
        .life-card h4 { color: #DA2C43; font-size: 20px; margin-bottom: 12px; font-weight: 700; }
        .life-card p { color: #475569; font-size: 14px; }

        /* 6. High-Conversion CTA Container */
        .cta-section { text-align: center; }
        .cta-box { 
            padding: 80px 40px; 
            background: #f8f8ed; 
            color: #0f172a; 
            border-radius: 40px; 
            border: 2px solid #DA2C43; 
            box-shadow: 0 30px 60px rgba(218, 44, 67, 0.05); 
        }
        .cta-box h2 { font-size: 44px; font-weight: 800; margin-bottom: 20px; letter-spacing: -1px; color: #0f172a; }
        .cta-box p { color: #334155; margin-bottom: 40px; max-width: 800px; margin-left: auto; margin-right: auto; font-size: 18px; line-height: 1.7; }
        
        /* Interactive Action Buttons Shapes */
        .btn-row { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
        .btn { 
            padding: 18px 45px; 
            border-radius: 12px; 
            font-weight: 700; 
            cursor: pointer; 
            transition: all 0.3s ease; 
            border: none; 
            font-size: 16px; 
            text-decoration: none; 
            display: inline-flex; 
            align-items: center; 
        }
        .btn-dark { background: #DA2C43; color: #fff; box-shadow: 0 10px 20px rgba(218, 44, 67, 0.2); }
        .btn-dark:hover { background: #b91c1c; transform: translateY(-3px); box-shadow: 0 15px 30px rgba(218, 44, 67, 0.3); }
        
        .btn-outline { background: transparent; color: #DA2C43; border: 2px solid #DA2C43; }
        .btn-outline:hover { background: #DA2C43; color: #fff; transform: translateY(-3px); }

        /* ==========================================
           ALL SCREEN RESPONSIVE ARCHITECTURE BYPASS RULES
        ========================================== */
        @media(max-width:992px) {
            section { padding: 80px 0; }
            .hero, .flex-box { flex-direction: column !important; text-align: center; gap: 40px; }
            .h-text h1 { font-size: 42px; }
            .cta-box h2 { font-size: 34px; }
            
            /* Responsive Order Strategy */
            .h-img { order: 1 !important; }
            .h-text { order: 2 !important; }
        }
        @media(max-width:576px) {
            section { padding: 60px 0; }
            .h-text h1 { font-size: 32px; }
            .s-box { padding: 35px 20px; }
            .cta-box { padding: 50px 20px; border-radius: 20px; }
            .cta-box h2 { font-size: 28px; }
            .cta-box p { font-size: 15px; }
            .btn { width: 100%; justify-content: center; }
            .btn-row { flex-direction: column; gap: 12px; }
        }

        .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;}
