 :root {
                --bg: #f9fbfd;
                --primary: #3b82f6;
                --gray: #6b7280;
                --card: #ffffff;
                --icon-bg: #eef2ff;
            }

            /* .section {
      max-width: 1200px;
      margin: 0 auto;
      padding: 80px 20px;
      text-align: center;
    } */

            .section h2 {
                font-size: 2.25rem;
                font-weight: 700;
                margin-bottom: 60px;
            }

            .features {
                display: flex;
                flex-wrap: wrap;
                justify-content: center;
                gap: 60px;
            }

            /* .column {
      flex: 1;
      min-width: 300px;
      max-width: 500px;
    } */

            .feature {
                display: flex;
                align-items: flex-start;
                margin-bottom: 40px;
                text-align: left;
            }

            .aicon {
                background-color: #f6f8ff;
    color: #0a67ff;
    font-size: 1.25rem;
    padding: 10px;
    border-radius: 12px;
    display: flex
;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-right: 16px;
    box-shadow: 4px 3px 3px 0px #ddd;
    border: 1px solid #ddd;
            }

            .feature-text {
                min-height: 71px;
            }
            .feature-text h4 {
                font-size: 1rem;
                font-weight: 600;
                margin-bottom: 6px;
            }

            .feature-text p {
                font-size: 0.9rem;
                color: var(--gray);
            }

            .footer-text {
                margin-top: 40px;
                font-size: 0.9rem;
            }

            .footer-text a {
                color: var(--primary);
                text-decoration: none;
                margin-left: 4px;
            }
            html {
                height: 100%; /* Ensure html takes full viewport height for body to stretch */
            }

            /* Split Container for Left and Right Panels */
            .split-container {
                display: flex;
                /* Removed height: 100vh; and overflow: hidden; to allow content to dictate height */
                width: 100%;
                min-height: 100vh; /* Ensure it's at least viewport height */
                align-items: flex-start; /* Align items to the top */
            }

            /* Left Panel - Fixed Image Container */
            .left-panel {
                flex: 0 0 50vw; /* Take exactly 50% of viewport width */
                position: sticky; /* Make the left panel stick to the viewport */
                top: 0; /* Stick to the top */
                height: 100vh; /* Takes full viewport height */
                display: flex;
                justify-content: center;
                align-items: center;
                background-color: #f0f0f0; /* Fallback background */
                overflow: hidden; /* Ensure image doesn't overflow */
                border-radius: 0 10px 10px 0; /* Rounded corners on the right side */
                box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1); /* Subtle shadow */
                transition: border-radius 0.3s ease; /* Smooth transition for border-radius */
            }

            .left-panel img {
                width: 100%;
                height: 100%;
                object-fit: cover; /* Ensures the image covers the entire space without distortion */
                display: block; /* Removes extra space below image */
                transition: opacity 0.5s ease-in-out; /* Smooth transition for image change */
                border-radius: inherit; /* Inherit border-radius from parent */
            }

            /* Right Panel - Scrollable Content */
            .right-panel {
                flex: 1; /* Takes the remaining space (50vw) */
                width: 50vw; /* Explicitly set width to ensure it takes its half */
                padding: 40px; /* Increased padding for better spacing */
                background-color: #fff;
                /* Removed height: 100vh; and overflow-y: auto; to allow body to scroll */
                box-sizing: border-box; /* Include padding in width/height calculations */
            }

            /* Content Sections */
            .content-section {
                min-height: 100vh; /* Make each section at least full viewport height to ensure enough scroll */
                display: flex;
                flex-direction: column;
                justify-content: center; /* Vertically center content if desired */
                align-items: flex-start; /* Align text to the left */
                padding: 40px 20px; /* Adjusted padding */
                border-bottom: 1px solid #eee; /* Separator between sections */
                box-sizing: border-box;
            }

            .content-section:last-child {
                border-bottom: none; /* No border for the last section */
            }

            .content-section h2 {
                font-size: 2.5em;
                color: #2c3e50;
                margin-bottom: 20px;
                text-align: left; /* Ensure title is left-aligned */
                    background-image: linear-gradient(50deg, rgb(128 87 224) 0%, rgb(31 208 105) 100%);
                -webkit-background-clip: text !important;
                background-clip: text !important;
                -webkit-text-fill-color: transparent !important;
                /* text-fill-color: transparent !important; */
            }

            .content-section p {
                font-size: 1.1em;
                line-height: 1.7;
                max-width: 700px; /* Limit text width for readability */
                text-align: left; /* Ensure paragraph is left-aligned */
                opacity: 0.8;
            }

            /* Responsive adjustments */
            @media (max-width: 768px) {
                .split-container {
                    flex-direction: column; /* Stack panels vertically on smaller screens */
                    height: auto; /* Allow container to take natural height */
                }

                .left-panel {
                    position: relative; /* No sticky position on mobile */
                    height: 60vh; /* Shorter height for image on mobile */
                    flex: none; /* Disable flex shrinking */
                    width: 100vw; /* Full width */
                    border-radius: 0; /* Remove rounded corners on mobile */
                    box-shadow: none; /* Remove shadow on mobile */
                }

                .right-panel {
                    flex: none; /* Disable flex shrinking */
                    width: 100vw; /* Full width */
                    padding: 15px;
                    height: auto; /* Allow right panel to take natural height on mobile */
                    /* overflow-y: visible; is not needed as body handles scroll */
                }

                .content-section {
                    min-height: auto; /* Allow sections to take natural height */
                    padding: 30px 15px;
                }

                .content-section h2 {
                    font-size: 2em;
                }

                .content-section p {
                    font-size: 1em;
                }
            }
            
                .highlight{
                    background-image: linear-gradient(180deg, #2E56A7 0%, #BB6DE5 100%);
                    background-clip: text;
                    -webkit-background-clip: text;
                    -webkit-text-fill-color: transparent;
                }
                .review{
                    background-image: linear-gradient(262deg, #386BB7 0%, #E24C4A 100%);
 background-clip: text;
                    -webkit-background-clip: text;
                    -webkit-text-fill-color: transparent;
                }