
    :root {
        --brand-blue: #3E6695;
        --soft-blue-bg: #eaf4ff;
        --text-dark: #2c3e50;
        --white: #ffffff;
    }

    .medical-split-card {
        padding: 80px 0;
        background-color: var(--soft-blue-bg);
    }

    .main-card-wrapper {
        background: var(--white);
        border-radius: 30px;
        overflow: hidden;
        box-shadow: 0 25px 70px rgba(62, 102, 149, 0.15);
    }

    /* Left Visual Styling */
    .visual-panel {
        height: 100%;
        min-height: 500px;
        background-size: cover;
        background-position: center;
        position: relative;
    }

    .glass-trust-badge {
        position: absolute;
        top: 30px;
        left: 30px;
        background: rgba(255, 255, 255, 0.85);
        backdrop-filter: blur(10px);
        border: 2px solid var(--brand-blue);
        padding: 15px 25px;
        border-radius: 15px;
        display: flex;
        align-items: center;
        gap: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .badge-icon {
        font-size: 2rem;
        color: #f39c12;
        /* Golden medical icon */
    }

    .badge-text .num {
        display: block;
        font-weight: 800;
        font-size: 1.2rem;
        color: var(--brand-blue);
    }

    .badge-text .lab {
        font-size: 0.9rem;
        font-weight: 600;
        color: #555;
    }

    /* Right Content Styling */
    .content-panel {
        padding: 60px 50px;
    }

    .title-main {
        font-weight: 900;
        color: var(--text-dark);
        letter-spacing: 1px;
    }

    .title-sub {
        color: var(--brand-blue);
        font-weight: 600;
        margin-bottom: 40px;
    }

    /* Feature Pills */
    .medical-feature-stack {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .feature-item-pill {
        display: flex;
        align-items: center;
        gap: 20px;
        padding: 15px 25px;
        background: var(--white);
        border: 2px solid #edf2f7;
        border-radius: 60px;
        /* Pill shape */
        transition: 0.3s ease;
    }

    .feature-item-pill:hover {
        border-color: var(--brand-blue);
        transform: translateX(10px);
    }

    .pill-icon {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: var(--brand-blue);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .pill-icon img {
        width: 25px;
        filter: brightness(0) invert(1);
    }

    .pill-body h3 {
        font-size: 1.15rem;
        font-weight: 700;
        margin: 0;
        color: var(--text-dark);
    }

    .pill-body p {
        font-size: 0.85rem;
        margin: 0;
        color: #7f8c8d;
    }

    /* Button */
    .btn-medical-appointment {
        background: var(--brand-blue);
        color: #fff !important;
        padding: 15px 40px;
        border-radius: 50px;
        font-weight: 700;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        box-shadow: 0 10px 20px rgba(62, 102, 149, 0.3);
        transition: 0.3s;
    }

    .btn-medical-appointment:hover {
        background: #2c4b6e;
        transform: translateY(-3px);
    }

    @media (max-width: 991px) {
        .feature-item-pill {
            border-radius: 20px;
        }
    }

