<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Feature Sections Styles */
/* Combined Medical Reasoning &amp; Context Section */
#medical-reasoning {
    background: linear-gradient(to right, #f8fafc, #f0f7ff);
    border-bottom: 1px solid var(--light-gray);
}

/* Combined reasoning grid layout */
.combined-reasoning-grid {
    display: grid;
    grid-template-columns: 35% 65%;
    gap: var(--spacing-xl);
    align-items: center;
    margin-bottom: 60px;
}

.reasoning-image {
    text-align: center;
    position: relative;
    z-index: 1;
}

.reasoning-image::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, rgba(30, 117, 255, 0.1), rgba(34, 197, 94, 0.05));
    border-radius: 12px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.reasoning-image:hover::before {
    opacity: 1;
}

.reasoning-main-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reasoning-image:hover .reasoning-main-image {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.reasoning-content {
    background-color: #F3F7FB;
    border-radius: 20px;
    padding: 40px;
    position: relative;
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reasoning-content:hover {
    transform: translateY(-5px);
    box-shadow: 0px 15px 35px rgba(0, 0, 0, 0.12);
}

.reasoning-title {
    font-size: 28px;
    font-weight: 700;
    color: #1E293B;
    margin-bottom: 20px;
}

.symptom-example {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.symptom-example h4 {
    font-size: 22px;
    font-weight: 600;
    color: #1E293B;
    margin-bottom: 15px;
}

.emphasis-text {
    font-size: 16px;
    font-weight: 500;
    color: #1E293B;
    margin-top: 20px;
    font-style: italic;
}

/* Cases overview styling */
.cases-overview {
    margin-top: 30px;
}

.cases-toggle-wrapper {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.cases-grid {
    display: none;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 40px 0;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Platform banner styles */
.platform-banner {
    padding: 100px 0;
    background: linear-gradient(to right, var(--white), #f0f7ff);
    border-bottom: 1px solid var(--light-gray);
    position: relative;
    overflow: hidden;
}

.platform-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/static/images/pattern-dots.svg');
    background-size: 50px;
    opacity: 0.05;
    animation: patternMove 60s linear infinite;
}

@keyframes patternMove {
    0% { background-position: 0 0; }
    100% { background-position: 100px 100px; }
}

.platform-banner .container {
    position: relative;
    z-index: 1;
}

.platform-section {
    padding: var(--spacing-xxl) 0;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

/* Alternate section backgrounds */
.platform-section:nth-child(even) {
    background-color: #f8fafc;
}

.platform-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/static/images/subtle-pattern.svg');
    background-size: 500px;
    opacity: 0.03;
    z-index: 0;
}

.platform-section .container {
    position: relative;
    z-index: 1;
}

/* Modal Content Section */
.modal-content-section {
    padding: var(--spacing-xxl) 0;
    background-color: var(--off-white);
    position: relative;
    overflow: hidden;
}

.modal-content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top right, rgba(225, 242, 255, 0.2), rgba(255, 255, 255, 0.5));
    z-index: 0;
}

.modal-content-section .container {
    position: relative;
    z-index: 1;
}

/* Section Header */
.section-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto var(--spacing-xl);
    position: relative;
}

.section-header::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--primary-light));
    margin: 20px auto 0;
    border-radius: 3px;
}

.section-header h1,
.section-header h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
    position: relative;
    display: inline-block;
}

.section-header p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: var(--spacing-lg);
    line-height: 1.6;
}

.feature-grid {
    display: grid;
    gap: var(--spacing-xl);
    position: relative;
    z-index: 1;
}

.feature-box {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: var(--spacing-lg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid transparent;
    overflow: hidden;
    position: relative;
}

.feature-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.feature-box::after {
    content: '';
    position: absolute;
    top: -4px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--primary-light));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-box:hover::after {
    opacity: 1;
}

.feature-icon {
    margin-bottom: var(--spacing-md);
    font-size: 2rem;
    transition: transform 0.3s ease;
}

.feature-box:hover .feature-icon {
    transform: scale(1.1);
}

.feature-box h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.feature-box:hover h3 {
    color: var(--primary-color);
}

.feature-box p {
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
    color: var(--text-light);
}

/* CTA Section */
.cta-section {
    padding: var(--spacing-xxl) 0;
    background-color: var(--white);
    border-top: 1px solid var(--light-gray);
    border-bottom: 1px solid var(--light-gray);
    background: linear-gradient(to right, #f8fafc, #f0f7ff);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/static/images/pattern-grid.svg');
    background-size: 30px;
    opacity: 0.03;
    animation: fadeSlowly 8s infinite alternate;
}

@keyframes fadeSlowly {
    0% { opacity: 0.02; }
    100% { opacity: 0.05; }
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.cta-content p {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 18px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.cta-buttons .btn {
    min-width: 180px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-buttons .btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Responsive layouts */
@media screen and (min-width: 1025px) {
    .image-left-layout {
        grid-template-columns: 25% 75% !important;
    }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
    .image-left-layout {
        grid-template-columns: 25% 75% !important;
    }
    
    .section-header h1,
    .section-header h2 {
        font-size: 32px;
    }
    
    .platform-banner,
    .platform-section {
        padding: 80px 0;
    }
}

@media screen and (max-width: 992px) {
    .combined-reasoning-grid {
        grid-template-columns: 40% 60%;
    }
    
    .cases-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media screen and (max-width: 768px) {
    .combined-reasoning-grid {
        grid-template-columns: 1fr !important;
        gap: var(--spacing-lg);
    }
    
    .reasoning-image {
        width: 80px !important;
        height: 80px !important;
        margin: 0 auto 20px !important;
        overflow: hidden !important;
        border-radius: 50% !important;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1) !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }
    
    .reasoning-image .reasoning-main-image {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        border-radius: 50% !important;
        box-shadow: none !important;
    }
    
    .reasoning-content {
        padding: 30px 20px !important;
    }
    
    .symptom-example {
        margin-top: 20px;
        padding-top: 15px;
    }
    
    .symptom-example h4 {
        font-size: 18px;
    }
    
    .cases-toggle-wrapper {
        flex-direction: column;
        align-items: center;
    }
    
    .cases-grid {
        grid-template-columns: 1fr !important;
    }
    
    .feature-grid {
        grid-template-columns: 1fr !important;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .section-header h1,
    .section-header h2 {
        font-size: 28px;
    }
    
    .section-header p {
        font-size: 16px;
    }
    
    .platform-banner,
    .platform-section {
        padding: 60px 0;
    }
}

/* Section header with icon layout */
.section-header-with-icon {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 40px;
}

.section-header-text {
    flex: 1;
}

.section-icon {
    width: 105px;
    height: 105px;
    margin-right: 20px;
    margin-left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 50%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    background-color: white;
    border: 3px solid white;
    order: -1; /* Move to the left */
}

.section-icon-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.section-icon:hover .section-icon-image {
    transform: scale(1.05);
}

/* Full width content */
.reasoning-content.full-width {
    width: 100%;
    background-color: #F3F7FB;
    border-radius: 20px;
    padding: 40px;
    position: relative;
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 40px;
}

.reasoning-content.full-width:hover {
    transform: translateY(-5px);
    box-shadow: 0px 15px 35px rgba(0, 0, 0, 0.12);
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .section-header-with-icon {
        flex-direction: row;
        text-align: left;
        align-items: center;
    }
    
    .section-icon {
        width: 80px;
        height: 80px;
        margin-right: 15px;
        margin-left: 0;
        margin-top: 0;
    }
    
    .reasoning-content.full-width {
        padding: 30px 20px;
    }
    
    .symptom-row {
        flex-direction: column-reverse;
        gap: 20px;
    }
    
    .symptom-image {
        width: 80px;
        height: 80px;
        margin: 0 auto;
    }
}

/* Symptom example row layout */
.symptom-row {
    display: flex;
    align-items: center;
    gap: 30px;
}

.symptom-content {
    flex: 1;
}

.symptom-image {
    width: 105px;
    height: 105px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    flex-shrink: 0;
    border: 3px solid white;
}

.symptom-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.symptom-image:hover img {
    transform: scale(1.05);
}

@media screen and (max-width: 768px) {
    .symptom-row {
        flex-direction: column-reverse;
        gap: 20px;
    }
    
    .symptom-image {
        width: 100px;
        height: 100px;
        margin: 0 auto;
    }
}

.feature-grid .image-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-grid .feature-image {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

/* Ensure proper alignment of text content */
.feature-grid &gt; div:nth-child(2) {
    padding-left: 30px;
}

/* Helper class for image-left layout */
.image-left-layout {
    display: flex;
    align-items: flex-start;
    gap: 32px;
    width: 100%;
    margin-bottom: 48px;
}

.image-left-layout .image-container {
    flex: 0 0 25%;
    max-width: 320px;
}

.image-left-layout .feature-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.image-left-layout .content-container {
    flex: 1;
}

.image-left-layout h2 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 30px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.image-left-layout p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 22px;
    color: var(--text-light);
}

.image-left-layout p:last-child {
    margin-bottom: 0;
}

.image-left-layout ul {
    padding-left: 1.5rem;
    margin-bottom: 22px;
}

.image-left-layout li {
    margin-bottom: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    line-height: 1.6;
}

@media screen and (max-width: 767px) {
    .image-left-layout {
        flex-direction: column;
        gap: 24px;
    }
    
    .image-left-layout .image-container {
        flex: 0 0 100%;
        max-width: 100%;
        width: 100%;
    }
    
    .image-left-layout .content-container {
        flex: 0 0 100%;
        padding: 0 20px;
    }
    
    .image-left-layout h2 {
        font-size: 26px;
        margin-bottom: 16px;
    }
    
    .image-left-layout p {
        font-size: 16px;
        margin-bottom: 20px;
    }
} </pre></body></html>