:root {
            --healthhome-primary-color: #2563eb;
            --healthhome-dark-slate: #1e293b;
            --healthhome-light-bg: #f8fafc;
            --healthhome-border-color: #e2e8f0;
            --healthhome-text-muted: #64748b;
            --healthhome-white: #ffffff;
            
            /* Provider Specific Colors */
            --healthhome-star: #e11d48;
            --healthhome-icici: #7b1fa2;
            --healthhome-hdfc: #1d4ed8;
            --healthhome-care: #0d9488;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        .healthhome-body {
            font-family: 'Inter', system-ui, -apple-system, sans-serif;
            background-color: var(--healthhome-light-bg);
            color: var(--healthhome-dark-slate);
            line-height: 1.5;
        }

        /* Hero / Section Header */
        .healthhome-hero-section {
            padding: 4rem 1.5rem;
            background: var(--healthhome-white);
            border-bottom: 1px solid var(--healthhome-border-color);
            text-align: center;
        }

        .healthhome-container {
            max-width: 1140px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        .healthhome-badge {
            display: inline-block;
            padding: 0.25rem 0.75rem;
            background: #dbeafe;
            color: var(--healthhome-primary-color);
            border-radius: 9999px;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 1rem;
        }

        .healthhome-main-title {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--healthhome-dark-slate);
            margin-bottom: 1rem;
            letter-spacing: -0.025em;
        }

        .healthhome-sub-text {
            color: var(--healthhome-text-muted);
            font-size: 1.125rem;
            max-width: 700px;
            margin: 0 auto;
        }

        /* Card Layout - Modern Dashboard Style */
        .healthhome-provider-row {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            margin-top: -3rem;
            padding-bottom: 4rem;
        }

        .healthhome-provider-card {
            background: var(--healthhome-white);
            border: 1px solid var(--healthhome-border-color);
            border-radius: 1rem;
            flex: 1 1 calc(25% - 1.5rem);
            min-width: 260px;
            display: flex;
            flex-direction: column;
            transition: all 0.2s ease;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
        }

        .healthhome-provider-card:hover {
            box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
            border-color: var(--healthhome-primary-color);
        }

        .healthhome-card-header {
            padding: 1.5rem;
            border-bottom: 1px solid var(--healthhome-border-color);
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .healthhome-card-icon {
            width: 40px;
            height: 40px;
            border-radius: 0.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
        }

        .healthhome-card-body {
            padding: 1.5rem;
            flex-grow: 1;
        }

        .healthhome-card-title {
            font-size: 1.125rem;
            font-weight: 700;
        }

        .healthhome-feature-list {
            list-style: none;
            margin-top: 1.25rem;
        }

        .healthhome-feature-item {
            font-size: 0.875rem;
            margin-bottom: 0.75rem;
            display: flex;
            align-items: center;
            color: var(--healthhome-text-muted);
        }

        .healthhome-feature-item svg {
            width: 16px;
            height: 16px;
            margin-right: 8px;
            color: #10b981;
        }

        .healthhome-card-footer {
            padding: 1.25rem 1.5rem;
            background: #f8fafc;
            border-bottom-left-radius: 1rem;
            border-bottom-right-radius: 1rem;
        }

        .healthhome-link-btn {
            display: block;
            text-align: center;
            padding: 0.625rem;
            background: white;
            border: 1px solid var(--healthhome-border-color);
            border-radius: 0.5rem;
            text-decoration: none;
            color: var(--healthhome-dark-slate);
            font-size: 0.875rem;
            font-weight: 600;
            transition: all 0.2s;
        }

        .healthhome-link-btn:hover {
            background: var(--healthhome-primary-color);
            color: white;
            border-color: var(--healthhome-primary-color);
        }

        /* Comparison Data Table */
        .healthhome-data-section {
            padding: 4rem 0;
        }

        .healthhome-data-table-wrapper {
            background: var(--healthhome-white);
            border: 1px solid var(--healthhome-border-color);
            border-radius: 1rem;
            overflow: hidden;
        }

        .healthhome-data-table {
            width: 100%;
            border-collapse: collapse;
        }

        .healthhome-data-table th {
            background: #f8fafc;
            padding: 1rem 1.5rem;
            text-align: left;
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: var(--healthhome-text-muted);
            border-bottom: 1px solid var(--healthhome-border-color);
        }

        .healthhome-data-table td {
            padding: 1.25rem 1.5rem;
            border-bottom: 1px solid var(--healthhome-border-color);
            font-size: 0.935rem;
        }

        .healthhome-data-table tr:last-child td {
            border-bottom: none;
        }

        @media (max-width: 768px) {
            .healthhome-provider-card {
                flex: 1 1 100%;
            }
            .healthhome-main-title {
                font-size: 2rem;
            }
        }