
        /* ================================================= */
        /* CONSOLIDATED CSS STYLES FROM USER'S PREVIOUS TURNS */
        /* ================================================= */

        /* Define consistent color variables (Block 1) */
        :root {
            --light-green: #e6ffe6;
            --orange: #ff6600; /* Main accent color */
            --dark-orange: #e65c00; /* Darker orange for hover states */
            --light-yellow: #fff8e1;
            --dark-bg: #212529; /* Dark background from footer */
            --text-color: #333;
            --light-text: #f8f9fa;
            --muted-text: #666;
            --brand-green: #16610E; /* Your specific brand green */
            --brand-orange: #F97A00; /* Your specific brand orange */
            --brand-light-yellow: #FED16A; /* Your specific brand light yellow */
            
            /* Color variables for the Amrit Shree Promo (Block 2 - Overriding) */
            --light-blue: #F0F8FF;
            --primary-blue: #083486; /* Primary color for this section */
            --accent-orange: #F78801; /* Accent color for this section */
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text-color);
            line-height: 1.7;
            background-color: #f4f7f6;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Poppins', sans-serif;
            font-weight: 800;
            color: var(--text-color);
        }

        .text-orange { color: var(--orange) !important; }
        .bg-orange { background-color: var(--orange) !important; }

        /* Buttons */
        .btn-orange {
            background-color: var(--orange);
            border-color: var(--orange);
            color: white;
            transition: all 0.3s ease;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            font-weight: 600;
        }
        .btn-orange:hover {
            background-color: var(--dark-orange);
            border-color: var(--dark-orange);
            transform: translateY(-3px);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
        }
        .btn-outline-orange {
            border-color: var(--orange);
            color: var(--orange);
            background-color: transparent;
            transition: all 0.3s ease;
        }
        .btn-outline-orange:hover {
            background-color: var(--orange);
            color: white;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }

        /* Sales Funnel Specific Styles */
        .hero-section-sales {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),  no-repeat center center/cover;
            color: white;
            padding: 8rem 0;
            text-align: center;
            position: relative;
            overflow: hidden;
            border-bottom-left-radius: 50px;
            border-bottom-right-radius: 50px;
        }
        .hero-section-sales::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 102, 0, 0.1);
            pointer-events: none;
        }
        .hero-section-sales h1 {
            font-size: 4rem;
            font-weight: 900;
            margin-bottom: 1.5rem;
            color: white;
            text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.6);
            line-height: 1.2;
        }
        .hero-section-sales p {
            font-size: 1.5rem;
            max-width: 900px;
            margin: 0 auto 2.5rem auto;
            color: rgba(255, 255, 255, 0.95);
            font-weight: 300;
        }

        .section-padding {
            padding: 6rem 0;
        }
        .bg-light-section {
            background-color: var(--light-yellow);
        }


        /* Feature Box */
        .feature-box {
            background-color: white;
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
            border: 1px solid rgba(255, 102, 0, 0.1);
        }
        .feature-box:hover {
            transform: translateY(-12px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
        }
        .feature-box i {
            font-size: 3.5rem;
            color: var(--orange);
            margin-bottom: 1.5rem;
            display: block;
        }
        .feature-box h4 {
            font-weight: 800;
            color: var(--orange);
            margin-bottom: 1rem;
            font-size: 1.8rem;
        }
        .feature-box p {
            color: var(--muted-text);
            font-size: 1.1rem;
        }

        /* Video Container */
        .video-container {
            position: relative;
            width: 100%;
            padding-bottom: 56.25%;
            height: 0;
            overflow: hidden;
            background-color: #000;
            border-radius: 15px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
            margin-top: 3rem;
            margin-bottom: 3rem;
        }
        .video-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 0;
        }
        
        
        
            .bonus-note {
                color: green; /* बोनस नोटको पाठलाई सेतो रङ्ग दिनको लागि थपिएको */
                /* तपाईंले यसलाई थप आकर्षक बनाउन फन्ट साइज, छायाँ वा बोल्ड पनि गर्न सक्नुहुन्छ */
            }
            @media only screen and (max-width: 768px) {
                .btn {
                    font-size: 16px !important;
                }
            }

        /* Money Back Section */
        .money-back-section {
            background-color: #f8f9fa;
            padding: 6rem 0;
            text-align: center;
        }
        .money-back-section h2 {
            color: var(--orange);
            margin-bottom: 2rem;
            position: relative;
            padding-bottom: 15px;
            font-size: 2.8rem;
        }
        .money-back-section h2::after {
            content: '';
            position: absolute;
            left: 50%;
            bottom: 0;
            transform: translateX(-50%);
            width: 100px;
            height: 5px;
            background-color: var(--orange);
            border-radius: 3px;
        }
        .money-back-steps .step-card {
            background-color: white;
            padding: 3rem;
            border-radius: 15px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
            margin-bottom: 2rem;
            transition: all 0.3s ease;
            text-align: left;
            border-left: 8px solid var(--orange);
        }
        .money-back-steps .step-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
        }
        .money-back-steps .step-card .step-number {
            font-size: 3.5rem;
            font-weight: 900;
            color: var(--orange);
            line-height: 1;
            margin-bottom: 1rem;
            float: left;
            margin-right: 20px;
        }
        .money-back-steps .step-card h3 {
            font-size: 2rem;
            color: var(--text-color);
            margin-bottom: 1rem;
            padding-top: 10px;
        }
        .money-back-steps .step-card p {
            color: var(--muted-text);
            font-size: 1.15rem;
            clear: both;
        }

        /* Policy Details Section */
        .policy-details-section {
            padding: 6rem 0;
            background-color: white;
        }
        .policy-details-section h2 {
            text-align: center;
            color: var(--text-color);
            margin-bottom: 3.5rem;
            font-size: 2.8rem;
            position: relative;
            padding-bottom: 15px;
        }
        .policy-details-section h2::after {
            content: '';
            position: absolute;
            left: 50%;
            bottom: 0;
            transform: translateX(-50%);
            width: 100px;
            height: 5px;
            background-color: var(--orange);
            border-radius: 3px;
        }
        .policy-details-section ul {
            list-style: none;
            padding: 0;
        }
        .policy-details-section ul li {
            font-size: 1.2rem;
            margin-bottom: 1.2rem;
            color: var(--text-color);
            background-color: #fdfdfd;
            padding: 1.2rem 1.8rem;
            border-left: 6px solid var(--orange);
            border-radius: 8px;
            box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
            transition: all 0.2s ease;
            font-weight: 500;
        }
        .policy-details-section ul li:hover {
            background-color: #f5f5f5;
            transform: translateX(8px);
            box-shadow: 0 5px 12px rgba(0, 0, 0, 0.12);
        }
        .policy-details-section ul li i {
            color: var(--orange);
            margin-right: 1.2rem;
            font-size: 1.5rem;
        }

        /* Final Call to Action */
        .final-cta {
            background-color: var(--orange);
            color: white;
            padding: 5rem 0;
            text-align: center;
            border-top-left-radius: 50px;
            border-top-right-radius: 50px;
        }
        .final-cta h2 {
            color: white;
            font-size: 3rem;
            margin-bottom: 2.5rem;
            font-weight: 900;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
        }
        .final-cta p {
            font-size: 1.3rem;
            color: rgba(255, 255, 255, 0.9);
            max-width: 800px;
            margin: 0 auto 3rem auto;
        }
        .final-cta .btn-light {
            color: var(--orange) !important;
            background-color: white !important;
            border-color: white !important;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            font-size: 1.5rem;
            padding: 1rem 3rem;
            font-weight: 700;
        }
        .final-cta .btn-light:hover {
            background-color: #f0f0f0 !important;
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
        }

        /* Call to Action Section for WhatsApp Group (Screenshot Design) */
        .cta-whatsapp-section {
            background-color: var(--brand-green);
            color: white;
            padding: 4rem 2rem;
            text-align: center;
        }
        .cta-whatsapp-section h2 {
            color: white;
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
        }
        .cta-whatsapp-section p {
            max-width: 800px;
            margin: 0 auto 2.5rem auto;
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.9);
        }
        .btn-whatsapp-cta {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 1rem 2.5rem;
            background-color: var(--brand-orange);
            color: white;
            font-weight: 700;
            border-radius: 10px;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 0px 10px rgba(0, 0, 0, 0.2);
            font-size: 1.3rem;
        }
        .btn-whatsapp-cta:hover {
            background-color: var(--brand-light-yellow);
            color: var(--brand-green);
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
        }
        .btn-whatsapp-cta svg {
            width: 1.5rem;
            height: 1.5rem;
            margin-right: 0.75rem;
        }

        /* Example Section (Amrit Shree Promo Styles - Block 2) */
        .amrit-shree-promo {
            background: linear-gradient(to bottom, var(--light-blue), #e6f2ff);
            color: var(--text-color);
            padding: 80px 20px;
            text-align: center;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            max-width: 1200px;
            margin: 40px auto;
            border: 1px solid #ddd;
        }

        .amrit-shree-promo h2 {
            font-size: 2.8rem;
            font-weight: 900;
            color: var(--primary-blue);
            margin-bottom: 25px;
            line-height: 1.3;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
            letter-spacing: 1px;
        }

        .amrit-shree-promo p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 20px;
            line-height: 1.8;
            color: #555;
        }

        .amrit-shree-promo .highlight {
            color: var(--primary-blue);
            font-weight: 700;
            font-size: 1.3rem;
            background-color: #f7f7f7;
            padding: 2px 5px;
            border-radius: 5px;
        }

        /* Financial Example Card - Clean and professional */
        .financial-card {
            background-color: white;
            border: 2px solid var(--primary-blue);
            border-radius: 20px;
            padding: 40px;
            margin-top: 40px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            position: relative;
            text-align: left;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .financial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 30px rgba(0,0,0,0.2);
        }

        .financial-card .card-heading {
            color: var(--primary-blue);
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 20px;
            text-align: center;
        }

        .financial-card p {
            font-size: 1.2rem;
            margin-bottom: 15px;
        }

        .financial-card strong.value {
            font-size: 1.4rem;
            color: var(--accent-orange);
            text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
        }

        .final-return-box {
            background-color: var(--accent-orange);
            color: white;
            padding: 25px;
            border-radius: 15px;
            margin-top: 30px;
            box-shadow: inset 0 0 10px rgba(0,0,0,0.2);
            animation: pulse-animation 2s infinite;
        }

        .final-return-box h3 {
            font-size: 2.2rem;
            font-weight: 800;
            margin: 0;
        }

        .final-return-box .sub-text {
            font-size: 1.2rem;
            font-weight: 600;
            margin-top: 5px;
        }

        /* Key Benefits List - Clean and trustworthy design */
        .benefit-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin-top: 40px;
        }

        .benefit-item {
            background-color: white;
            color: var(--primary-blue);
            padding: 30px;
            border-radius: 20px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            text-align: center;
            border: 2px solid var(--primary-blue);
        }

        .benefit-item:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 12px 20px rgba(0,0,0,0.2);
        }

        .benefit-item i {
            font-size: 2.8rem;
            color: var(--accent-orange);
            margin-bottom: 15px;
        }

        .benefit-item p {
            font-size: 1.2rem;
            font-weight: 600;
            line-height: 1.5;
            color: #333;
        }

        /* Call to Action - Attractive but not aggressive */
        .cta-button-promo {
            background-color: var(--accent-orange);
            color: white;
            padding: 18px 50px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.4rem;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: inline-block;
            margin-top: 40px;
            animation: pulse-animation 2s infinite;
        }

        .cta-button-promo:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            background-color: #e67d00;
        }

        @keyframes pulse-animation {
            0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(247, 136, 1, 0.4); }
            70% { transform: scale(1.03); box-shadow: 0 0 0 15px rgba(247, 136, 1, 0); }
            100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(247, 136, 1, 0); }
        }
        
        /* Footer Specific Styles (Block 3) */
        .footer-main {
            background-color: var(--dark-bg);
            color: var(--light-text);
            padding: 2.5rem 0;
        }
        .footer-content-container {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            flex-wrap: wrap;
            gap: 2rem;
            max-width: 1200px; /* Matching the promo max-width */
            margin: 0 auto;
            padding: 0 15px;
        }
        .footer-column {
            flex: 1;
            min-width: 200px;
        }
        .footer-column h5 {
            color: var(--brand-orange);
            font-weight: 600;
            margin-bottom: 1rem;
        }
        .footer-column p, .footer-column ul li {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.7);
        }
        .footer-column ul {
            list-style: none;
            padding: 0;
        }
        .footer-column ul li a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: color 0.3s ease;
            line-height: 2;
        }
        .footer-column ul li a:hover {
            color: var(--brand-orange);
        }
        .footer-social-links a {
            color: white;
            font-size: 1.25rem;
            margin-right: 1rem;
            transition: color 0.3s ease;
        }
        .footer-social-links a:hover {
            color: var(--brand-orange);
        }
        .footer-whatsapp-button {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0.75rem 1.5rem;
            background-color: var(--brand-orange);
            color: white;
            font-weight: 600;
            border-radius: 0.5rem;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            width: 100%;
        }
        .footer-whatsapp-button:hover {
            background-color: var(--brand-light-yellow);
            color: var(--brand-green);
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
        }
        .footer-whatsapp-button svg {
            width: 1.5rem;
            height: 1.5rem;
            margin-right: 0.5rem;
        }


        /* Responsive adjustments (Block 3 & 2 combined) */
        @media (max-width: 768px) {
            .amrit-shree-promo h2 {
                font-size: 2.2rem;
            }
            .financial-card {
                padding: 25px;
            }
            .cta-button-promo {
                font-size: 1.2rem;
                padding: 15px 40px;
            }
            /* Sales Funnel Responsive Adjustments */
            .hero-section-sales { padding: 5rem 0; border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; }
            .hero-section-sales h1 { font-size: 2.5rem; }
            .hero-section-sales p { font-size: 1rem; }
            .section-padding { padding: 3rem 0; }
            .feature-box { margin-bottom: 1.5rem; padding: 1.5rem; }
            .feature-box h4 { font-size: 1.4rem; }
            .feature-box i { font-size: 2.5rem; }
            .video-container { padding-bottom: 70%; }
            .money-back-section h2, .policy-details-section h2, .final-cta h2, .cta-whatsapp-section h2 { font-size: 2rem; }
            .money-back-steps .step-card { padding: 2rem; text-align: center; border-left: none; border-bottom: 6px solid var(--orange); }
            .money-back-steps .step-card .step-number { float: none; margin-right: 0; display: block; }
            .money-back-steps .step-card h3 { font-size: 1.5rem; padding-top: 0; }
            .policy-details-section ul li { font-size: 1rem; padding: 1rem; }
            .final-cta { border-top-left-radius: 30px; border-top-right-radius: 30px; }
            .final-cta .btn-light { font-size: 1.2rem; padding: 0.8rem 2rem; }
            .cta-whatsapp-section { padding: 3rem 1rem; }
            .cta-whatsapp-section p { font-size: 1rem; }
            .btn-whatsapp-cta { width: 100%; font-size: 1.1rem; padding: 0.8rem 1rem; }
            
            /* Footer Responsive Adjustments (Mobile) */
            .footer-content-container { flex-direction: column; text-align: center; gap: 1.5rem; }
            .footer-column { min-width: 100%; }
            .footer-column p, .footer-column ul { text-align: center; }
            .footer-social-links { display: flex; justify-content: center; }
        }
  
