        body { background: #f5f5f5; }
        .m-page-header {
            background: linear-gradient(135deg, #1a0a05 0%, #3D1408 100%);
            padding: 24px 16px 28px;
            text-align: center;
        }
        .m-page-header h1 {
            font-family: 'Noto Serif SC', serif, 'Songti SC', 'SimSun';
            color: #C8A96E;
            font-size: 1.25rem;
            margin: 0;
            letter-spacing: 3px;
        }
        .m-page-header .hero-divider {
            width: 50px;
            height: 2px;
            background: #C8A96E;
            margin: 12px auto;
            opacity: 0.5;
        }
        .m-page-header p {
            color: rgba(200,169,110,0.6);
            font-size: 0.8rem;
            margin: 0;
            line-height: 1.6;
        }
        .m-type-list {
            padding: 16px 12px 0;
        }
        .m-type-item {
            background: white;
            border-radius: 12px;
            margin-bottom: 12px;
            padding: 16px;
            display: flex;
            align-items: center;
            gap: 14px;
            text-decoration: none;
            box-shadow: 0 1px 6px rgba(0,0,0,0.05);
            border: 1px solid #f0f0f0;
            transition: all 0.2s;
        }
        .m-type-item:active {
            transform: scale(0.98);
            box-shadow: 0 2px 10px rgba(139,26,26,0.12);
        }
        .m-type-icon {
            width: 46px;
            height: 46px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            font-weight: 400;
            color: white;
            flex-shrink: 0;
        }
        .m-type-info {
            flex-grow: 1;
            min-width: 0;
        }
        .m-type-name {
            font-family: 'Noto Serif SC', serif, 'Songti SC', 'SimSun';
            font-size: 1rem;
            font-weight: 400;
            color: #8B1A1A;
            margin-bottom: 3px;
        }
        .m-type-desc {
            font-size: 0.75rem;
            color: #999;
            line-height: 1.5;
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
        }
        .m-type-arrow {
            color: #C8A96E;
            flex-shrink: 0;
        }
        .m-action-bar {
            position: sticky;
            bottom: 0;
            left: 0;
            right: 0;
            display: flex;
            gap: 10px;
            padding: 14px 16px;
            padding-bottom: calc(14px + env(safe-area-inset-bottom, 0px));
            background: white;
            box-shadow: 0 -2px 12px rgba(0,0,0,0.06);
            z-index: 100;
        }
        .m-action-btn {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            padding: 13px 0;
            border-radius: 28px;
            font-size: 0.9rem;
            font-weight: 400;
            text-decoration: none;
            transition: all 0.2s;
        }
        .m-action-btn:active { transform: scale(0.96); }
        .m-action-btn.assess {
            background: #8B1A1A;
            color: white;
        }
        .m-action-btn.appointment {
            background: white;
            color: #8B1A1A;
            border: 2px solid #C8A96E;
        }
        .m-action-btn svg { width: 18px; height: 18px; }
