/* InsightEdge Custom CSS with Prefix */
        .insight-body-product {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            line-height: 1.6;
            color: #333;
        }

        /* Hero Section */
        .insight-hero {
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
            color: white;
            padding: 5rem 0;
            position: relative;
            overflow: hidden;
        }

        .insight-hero::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.05)"/></svg>');
            background-size: cover;
        }

        .insight-hero-text {
            padding: 2rem;
            max-width: 600px;
        }

        .insight-hero-text h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, #fff 0%, #60a5fa 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .insight-hero-text p {
            font-size: 1.25rem;
            color: #cbd5e1;
            margin-bottom: 2rem;
            line-height: 1.7;
        }

        .insight-floating-stats {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 12px;
            padding: 2rem;
            text-align: center;
            max-width: 280px;
        }

        .insight-header {
            font-size: 1.1rem;
            color: #cbd5e1;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .insight-percentage {
            font-size: 3rem;
            font-weight: 700;
            color: #dadada;
            line-height: 1;
            margin-bottom: 0.5rem;
        }

        .insight-text {
            font-size: 1.1rem;
            color: white;
            font-weight: 600;
        }

        /* Content Sections */
        .insight-collaboration-section {
            padding: 4rem 0;
        }

        .insight-bg-light {
            background-color: #f8fafc;
        }

        .insight-align-center {
            align-items: center;
        }

        .insight-text-content {
            padding: 1rem;
        }

        .insight-section-title {
            font-size: 2.5rem;
            font-weight: 500;
            color: #1e293b;
            margin-bottom: 1.5rem;
            position: relative;
        }

        .insight-section-title::after {
            content: "";
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 4px;
            background: #123c78;
            border-radius: 2px;
        }

        .insight-fs-4 {
            font-size: 1.5rem !important;
            color: #475569;
            line-height: 1.7;
            margin-top: 1.5rem;
        }

        /* Image Containers */
        .insight-image-container {
            position: relative;
            margin: 1rem;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .insight-image-container:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .insight-integrated-image {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }

        .insight-image-container:hover .insight-integrated-image {
            transform: scale(1.05);
        }

        .insight-image-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
            color: white;
            padding: 1.5rem;
            transform: translateY(0%);
           
        }

        .insight-image-container:hover .insight-image-overlay {
            transform: translateY(0);
        }

        .insight-image-overlay h4 {
            margin: 0 0 0.5rem 0;
            font-size: 1.3rem;
            font-weight: 600;
        }

        .insight-image-overlay p {
            margin: 0;
            font-size: 1rem;
            opacity: 0.9;
        }

        /* Tool and Process Items */
        .insight-tool-item, .insight-process-item {
            margin-bottom: 2.5rem;
        }

        .insight-tool-header, .insight-process-header {
            font-size: 1.5rem;
            font-weight: 600;
            color: #1e293b;
            margin-bottom: 0.5rem;
        }

        .insight-tool-description {
            font-size: 1.1rem;
            color: #475569;
            margin-bottom: 1rem;
            line-height: 1.6;
        }

        /* Feature Lists */
        .insight-feature-list, .insight-feature-list-large {
            list-style: none;
            padding-left: 0;
        }

        .insight-feature-item, .insight-feature-item-large {
            position: relative;
            padding-left: 1.8rem;
            margin-bottom: 1rem;
            color: #475569;
            line-height: 1.6;
            text-align: left;
        }

        .insight-feature-item:before, .insight-feature-item-large:before {
            content: "▶";
            position: absolute;
            left: 0;
            color: #123c78;
            font-weight: bold;
            top: 0.1em;
        }

        .insight-feature-item-large {
            font-size: 1.1rem;
            margin-bottom: 1.2rem;
        }

        .insight-feature-list strong, .insight-feature-list-large strong {
            color: #1e293b;
        }

        /* Specific Section Styling */
        .insight-key-features-section {
            padding: 4rem 0;
            background: linear-gradient(135deg, #92949a 0%, #e0f2fe 100%);
        }

        .insight-business-impact-section {
            padding: 4rem 0;
        }

        .insight-why-insightedge-section {
            padding: 4rem 0;
        }

        /* CTA Section */
        .insight-cta-section {
            padding: 5rem 0;
            background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
            color: white;
            text-align: center;
        }

        .insight-cta-text {
            font-size: 1.25rem;
            color: #cbd5e1;
            margin-bottom: 2rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Button */
        .insight-btn-contact {
            display: inline-block;
            background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
            color: white;
            padding: 1rem 2.5rem;
            border-radius: 8px;
            font-weight: 600;
            text-decoration: none;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
        }

        .insight-btn-contact:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
            color: white;
        }

        /* Mobile Responsive Design */
        @media (max-width: 992px) {
            .insight-hero-text h1 {
                font-size: 2.8rem;
            }
            
            .insight-section-title {
                font-size: 2rem;
            }
            
            .insight-floating-stats {
                margin: 2rem auto;
            }
            
            .insight-image-container {
                margin: 1rem 0;
            }
            
            .insight-text-content {
                text-align: center;
                padding: 1rem 0;
            }
        }

        @media (max-width: 768px) {
            .insight-hero {
                padding: 3rem 0;
            }
            
            .insight-hero-text {
                padding: 1rem;
                text-align: center;
                max-width: 100%;
            }
            
            .insight-hero-text h1 {
                font-size: 2.2rem;
            }
            
            .insight-hero-text p {
                font-size: 1.1rem;
            }
            
            .insight-section-title {
                font-size: 1.8rem;
                text-align: center;
            }
            
            .insight-section-title::after {
                left: 50%;
                transform: translateX(-50%);
            }
            
            .insight-fs-4 {
                font-size: 1.25rem !important;
                text-align: center;
            }
            
            .insight-collaboration-section {
                padding: 3rem 0;
            }
            
            .insight-image-overlay {
                transform: translateY(0);
                background: rgba(0, 0, 0, 0.7);
            }
            
            .insight-floating-stats {
                max-width: 100%;
                margin: 1rem 0;
            }
            
            /* Mobile Order Fix - Ensure text comes first */
            .insight-collaboration-section .order-1 {
                order: 2 !important;
                margin-bottom: 2rem;
            }
            
            .insight-collaboration-section .order-2 {
                order: 1 !important;
            }
            
            .insight-tool-header, .insight-process-header {
                font-size: 1.3rem;
                text-align: center;
            }
            
            .insight-tool-description {
                text-align: center;
            }
        }

        @media (max-width: 576px) {
            .insight-hero-text h1 {
                font-size: 1.8rem;
            }
            
            .insight-section-title {
                font-size: 1.6rem;
            }
            
            .insight-percentage {
                font-size: 2.5rem;
            }
            
            .insight-btn-contact {
                padding: 0.8rem 2rem;
                font-size: 1rem;
            }
            
            .insight-cta-text {
                font-size: 1.1rem;
            }
            
            .insight-integrated-image {
                height: 300px;
            }

            .insight-image-overlay {
                padding: 0.5rem;
            }

            .insight-feature-item, .insight-feature-item-large {
                padding-left: 1.5rem;
                font-size: 1rem;
            }
            
            .insight-image-container {
                margin: 0.5rem 0;
            }
        }

        /* Desktop full width */
        @media (min-width: 1200px) {
            .container {
                max-width: 1140px;
            }
        }

         /* NeuroSight Custom CSS with Prefix */
        .neuro-body-product {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            line-height: 1.6;
            color: #333;
        }

        /* Hero Section */
        .neuro-hero {
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
            color: white;
            padding: 5rem 0;
            position: relative;
            overflow: hidden;
            min-height: 80vh;
            display: flex;
            align-items: center;
        }

        .neuro-hero::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.05)"/></svg>');
            background-size: cover;
        }

        .neuro-hero-text {
            padding: 2rem;
            max-width: 600px;
        }

        .neuro-hero-text h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, #fff 0%, #60a5fa 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .neuro-hero-text p {
            font-size: 1.25rem;
            color: #cbd5e1;
            margin-bottom: 2rem;
            line-height: 1.7;
        }

        .neuro-floating-stats {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 12px;
            padding: 2rem;
            text-align: center;
            max-width: 280px;
            margin-right: 2rem;
        }

        .neuro-header {
            font-size: 1.1rem;
            color: #cbd5e1;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .neuro-percentage {
            font-size: 3rem;
            font-weight: 700;
            color: #f6f7f8;
            line-height: 1;
            margin-bottom: 0.5rem;
        }

        .neuro-text {
            font-size: 1.1rem;
            color: white;
            font-weight: 600;
        }

        /* Content Sections */
        .neuro-collaboration-section {
            padding: 4rem 0;
        }

        .neuro-bg-light {
            background-color: #f8fafc;
        }

        .neuro-align-center {
            align-items: center;
        }

        .neuro-text-content {
            padding: 2rem;
        }

        .neuro-text-content h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 1.5rem;
            position: relative;
        }

        .neuro-text-content h2::after {
            content: "";
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 4px;
            background: #123c78;
            border-radius: 2px;
        }

        .neuro-section-description {
            font-size: 1.1rem;
            color: #475569;
            line-height: 1.7;
            text-align: justify;
        }

        /* Image Containers */
        .neuro-image-container {
            position: relative;
            margin: 1rem;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .neuro-image-container:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .neuro-integrated-image {
            width: 100%;
            height: 400px;
            object-fit: cover;
            display: block;
            transition: transform 0.5s ease;
        }

        .neuro-image-container:hover .neuro-integrated-image {
            transform: scale(1.05);
        }

        .neuro-image-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
            color: white;
            padding: 1.5rem;
            transform: translateY(0%);
            
        }

        .neuro-image-container:hover .neuro-image-overlay {
            transform: translateY(0);
        }

        .neuro-image-overlay h4 {
            margin: 0 0 0.5rem 0;
            font-size: 1.3rem;
            font-weight: 600;
        }

        .neuro-image-overlay p {
            margin: 0;
            font-size: 1rem;
            opacity: 0.9;
        }

        /* Features Section */
        .neuro-features-section {
            padding: 4rem 0;
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
        }

        .neuro-section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 3rem;
            position: relative;
            text-align: center;
        }

        .neuro-section-title::after {
            content: "";
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: #123c78;
            border-radius: 2px;
        }

        .neuro-feature-item {
            text-align: center;
            padding: 2rem;
            margin-bottom: 2rem;
        }

        .neuro-feature-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .neuro-feature-item h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #1e293b;
            margin-bottom: 1rem;
        }

        .neuro-feature-item p {
            color: #475569;
            line-height: 1.6;
        }

        /* CTA Section */
        .neuro-cta-section {
            padding: 5rem 0;
            background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
            color: white;
            text-align: center;
        }

        .neuro-cta-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .neuro-cta-text {
            font-size: 1.25rem;
            color: #cbd5e1;
            margin-bottom: 2rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Button */
        .neuro-btn-contact {
            display: inline-block;
            background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
            color: white;
            padding: 1rem 2.5rem;
            border-radius: 8px;
            font-weight: 600;
            text-decoration: none;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
        }

        .neuro-btn-contact:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
            color: white;
        }

        /* Utility Classes */
        .neuro-d-flex {
            display: flex !important;
        }

        .neuro-align-items-center {
            align-items: center !important;
        }

        .neuro-justify-content-start {
            justify-content: flex-start !important;
        }

        .neuro-fw-bold {
            font-weight: 700 !important;
        }

        .neuro-g-0 {
            --bs-gutter-x: 0;
            --bs-gutter-y: 0;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .neuro-hero-text h1 {
                font-size: 2.8rem;
            }
            
            .neuro-text-content h2 {
                font-size: 2rem;
            }
            
            .neuro-floating-stats {
                margin: 2rem auto;
            }
            
            .neuro-image-container {
                margin: 2rem 0;
            }
            
            .neuro-integrated-image {
                height: 350px;
            }
        }

        @media (max-width: 768px) {
            .neuro-hero {
                padding: 3rem 0;
                text-align: center;
                min-height: 70vh;
            }
            
            .neuro-hero-text {
                padding: 1rem;
            }
            
            .neuro-hero-text h1 {
                font-size: 2.2rem;
            }
            
            .neuro-hero-text p {
                font-size: 1.1rem;
            }
            
            .neuro-text-content h2 {
                font-size: 1.8rem;
            }
            
            .neuro-section-title {
                font-size: 2rem;
            }
            
            .neuro-collaboration-section {
                padding: 3rem 0;
            }
            
            .neuro-image-overlay {
                transform: translateY(0);
                background: rgba(0, 0, 0, 0.7);
            }
            
            .neuro-integrated-image {
                height: 300px;
            }
            
            /* Ensure text comes first on mobile */
            .order-1 {
                order: 1 !important;
            }
            
            .order-2 {
                order: 2 !important;
            }
        }

        @media (max-width: 576px) {
            .neuro-hero-text h1 {
                font-size: 1.8rem;
            }
            
            .neuro-text-content h2 {
                font-size: 1.6rem;
            }
            
            .neuro-percentage {
                font-size: 2.5rem;
            }

            .neuro-text-content{
                padding: 0rem;
            }

            .neuro-image-overlay{
                padding: 1rem;
            }

            .neuro-btn-contact {
                padding: 0.8rem 2rem;
                font-size: 1rem;
            }
            
            .neuro-cta-title {
                font-size: 2rem;
            }
            
            .neuro-cta-text {
                font-size: 1.1rem;
            }
            
            .neuro-section-title {
                font-size: 1.8rem;
            }
        }

        /* NeuroSight Cardiology Custom CSS with Prefix */
    .neuro-cardio-body-product {
        font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
        line-height: 1.6;
        color: #333;
    }

    /* Hero Section */
    .neuro-cardio-hero {
        background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
        color: white;
        padding: 5rem 0;
        position: relative;
        overflow: hidden;
        min-height: 80vh;
        display: flex;
        align-items: center;
    }

    .neuro-cardio-hero::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.05)"/></svg>');
        background-size: cover;
    }

    .neuro-cardio-hero-text {
        padding: 2rem;
        max-width: 600px;
    }

    .neuro-cardio-hero-text h1 {
        font-size: 3.5rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
        background: linear-gradient(135deg, #fff 0%, #60a5fa 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .neuro-cardio-hero-text p {
        font-size: 1.25rem;
        color: #cbd5e1;
        margin-bottom: 2rem;
        line-height: 1.7;
    }

    .neuro-cardio-floating-stats {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 12px;
        padding: 2rem;
        text-align: center;
        max-width: 280px;
        margin-right: 2rem;
    }

    .neuro-cardio-header {
        font-size: 1.1rem;
        color: #cbd5e1;
        margin-bottom: 1rem;
        font-weight: 600;
    }

    .neuro-cardio-percentage {
        font-size: 3rem;
        font-weight: 700;
        color: #d2d3d3;
        line-height: 1;
        margin-bottom: 0.5rem;
    }

    .neuro-cardio-text {
        font-size: 1.1rem;
        color: white;
        font-weight: 600;
    }

    /* Content Sections */
    .neuro-cardio-collaboration-section {
        padding: 4rem 0;
    }

    .neuro-cardio-bg-light {
        background-color: #f8fafc;
    }

    .neuro-cardio-align-center {
        align-items: center;
    }

    .neuro-cardio-text-content {
        padding: 2rem;
    }

    .neuro-cardio-text-content h2 {
        font-size: 2.5rem;
        font-weight: 700;
        color: #1e293b;
        margin-bottom: 1.5rem;
        position: relative;
    }

    .neuro-cardio-text-content h2::after {
        content: "";
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 60px;
        height: 4px;
        background: #123c78;
        border-radius: 2px;
    }

    .neuro-cardio-section-description {
        font-size: 1.1rem;
        color: #475569;
        line-height: 1.7;
    }

    /* Bullet Lists */
    .neuro-cardio-square-bullet-list {
        list-style: none;
        padding-left: 0;
    }

    .neuro-cardio-square-bullet-list > li {
        position: relative;
        padding-left: 2rem;
        margin-bottom: 1.5rem;
        color: #475569;
        font-size: 1.1rem;
        line-height: 1.6;
    }

    .neuro-cardio-square-bullet-list > li:before {
        content: "";
        position: absolute;
        left: 0;
        top: 0.5rem;
        width: 12px;
        height: 12px;
        background-color: #123c78;
        transform: rotate(45deg);
        border-radius: 2px;
    }

    .neuro-cardio-square-bullet-list strong {
        color: #1e293b;
    }

    /* Image Containers */
    .neuro-cardio-image-container {
        position: relative;
        margin: 1rem;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
    }

    .neuro-cardio-image-container:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    }

    .neuro-cardio-integrated-image {
        width: 100%;
        height: 400px;
        object-fit: cover;
        display: block;
        transition: transform 0.5s ease;
    }

    .neuro-cardio-image-container:hover .neuro-cardio-integrated-image {
        transform: scale(1.05);
    }

    .neuro-cardio-image-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
        color: white;
        padding: 1.5rem;
        transform: translateY(0%);
        
    }

    .neuro-cardio-image-container:hover .neuro-cardio-image-overlay {
        transform: translateY(0);
    }

    .neuro-cardio-image-overlay h4 {
        margin: 0 0 0.5rem 0;
        font-size: 1.3rem;
        font-weight: 600;
    }

    .neuro-cardio-image-overlay p {
        margin: 0;
        font-size: 1rem;
        opacity: 0.9;
    }

    /* Features Section */
    .neuro-cardio-features-section {
        padding: 4rem 0;
        background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    }

    .neuro-cardio-section-title {
        font-size: 2.5rem;
        font-weight: 700;
        color: #1e293b;
        margin-bottom: 3rem;
        position: relative;
        text-align: center;
    }

    .neuro-cardio-section-title::after {
        content: "";
        position: absolute;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: #123c78;
        border-radius: 2px;
    }

    .neuro-cardio-feature-item {
        text-align: center;
        padding: 2rem;
        margin-bottom: 2rem;
    }

    .neuro-cardio-feature-icon {
        font-size: 3rem;
        margin-bottom: 1rem;
    }

    .neuro-cardio-feature-item h3 {
        font-size: 1.5rem;
        font-weight: 600;
        color: #1e293b;
        margin-bottom: 1rem;
    }

    .neuro-cardio-feature-item p {
        color: #475569;
        line-height: 1.6;
    }

    /* CTA Section */
    .neuro-cardio-cta-section {
        padding: 5rem 0;
        background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
        color: white;
        text-align: center;
    }

    .neuro-cardio-cta-title {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
    }

    .neuro-cardio-cta-text {
        font-size: 1.25rem;
        color: #cbd5e1;
        margin-bottom: 2rem;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Button */
    .neuro-cardio-btn-contact {
        display: inline-block;
        background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
        color: white;
        padding: 1rem 2.5rem;
        border-radius: 8px;
        font-weight: 600;
        text-decoration: none;
        font-size: 1.1rem;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    }

    .neuro-cardio-btn-contact:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
        color: white;
    }

    /* Utility Classes */
    .neuro-cardio-d-flex {
        display: flex !important;
    }

    .neuro-cardio-align-items-center {
        align-items: center !important;
    }

    .neuro-cardio-justify-content-start {
        justify-content: flex-start !important;
    }

    .neuro-cardio-fw-bold {
        font-weight: 700 !important;
    }

    .neuro-cardio-fs-5 {
        font-size: 1.25rem !important;
    }

    .neuro-cardio-ps-4 {
        padding-left: 1.5rem !important;
    }

    .neuro-cardio-mb-3 {
        margin-bottom: 1rem !important;
    }

    .neuro-cardio-position-relative {
        position: relative !important;
    }

    .neuro-cardio-justify-para {
        text-align: justify;
    }

    .neuro-cardio-g-0 {
        --bs-gutter-x: 0;
        --bs-gutter-y: 0;
    }

    /* Responsive Design */
    @media (max-width: 992px) {
        .neuro-cardio-hero-text h1 {
            font-size: 2.8rem;
        }
        
        .neuro-cardio-text-content h2 {
            font-size: 2rem;
        }
        
        .neuro-cardio-floating-stats {
            margin: 2rem auto;
        }
        
        .neuro-cardio-image-container {
            margin: 2rem 0;
        }
        
        .neuro-cardio-integrated-image {
            height: 350px;
        }
    }

    @media (max-width: 768px) {
        .neuro-cardio-hero {
            padding: 3rem 0;
            text-align: center;
            min-height: 70vh;
        }
        
        .neuro-cardio-hero-text {
            padding: 1rem;
        }
        
        .neuro-cardio-hero-text h1 {
            font-size: 2.2rem;
        }
        
        .neuro-cardio-hero-text p {
            font-size: 1.1rem;
        }
        
        .neuro-cardio-text-content h2 {
            font-size: 1.8rem;
        }
        
        .neuro-cardio-section-title {
            font-size: 2rem;
        }
        
        .neuro-cardio-collaboration-section {
            padding: 3rem 0;
        }
        
        .neuro-cardio-image-overlay {
            transform: translateY(0);
            background: rgba(0, 0, 0, 0.7);
        }
        
        .neuro-cardio-integrated-image {
            height: 300px;
        }
    }

    @media (max-width: 576px) {
        .neuro-cardio-hero-text h1 {
            font-size: 1.8rem;
        }

        .neuro-cardio-text-content{
            padding: 0rem;
        }
        
        .neuro-cardio-text-content h2 {
            font-size: 1.6rem;
        }
        
        .neuro-cardio-percentage {
            font-size: 2.5rem;
        }
        
        .neuro-cardio-btn-contact {
            padding: 0.8rem 2rem;
            font-size: 1rem;
        }
        
        .neuro-cardio-cta-title {
            font-size: 2rem;
        }
        
        .neuro-cardio-cta-text {
            font-size: 1.1rem;
        }
        
        .neuro-cardio-section-title {
            font-size: 1.8rem;
        }
        
        .neuro-cardio-square-bullet-list > li {
            padding-left: 1.5rem;
            font-size: 1rem;
        }

        .neuro-cardio-image-overlay{
            padding: 0.5rem;
        }
        
        .neuro-cardio-ps-4{
            padding-left: 0.5rem;
        }
    }