        .top-bar { background-color: #eee; padding: 8px 0; font-size: 14px; color: #666; }
        .container { width: 1200px; margin: 0 auto; max-width: 95%; }
        .top-bar .container { display: flex; justify-content: space-between; }
        .header-main { background: #fff; padding: 20px 0; }
        .header-main .container { display: flex; justify-content: space-between; align-items: center; }
        .logo { font-size: 28px; font-weight: bold; color: var(--primary-red); display: flex; align-items: center; }
        .logo span { font-size: 14px; color: #666; margin-left: 10px; font-weight: normal; border-left: 1px solid #ddd; padding-left: 10px; }
        .hotline h3 { color: var(--primary-red); font-size: 24px; font-weight: bold; text-align: right; }
        
        nav { background-color: var(--primary-red); position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 5px rgba(0,0,0,0.1); }
        .nav-list { display: flex; justify-content: space-between; }
        .nav-list li { flex: 1; text-align: center; }
        .nav-list li a { display: block; color: #fff; padding: 15px 5px; font-size: 15px; font-weight: 500; }
        .nav-list li a:hover, .nav-list li.active a { background-color: #8e1212; color: var(--accent-gold); }
        .mobile-menu-btn { display: none; color: #fff; font-size: 24px; padding: 10px; cursor: pointer; }

        /* --- 本页特定样式 (Medical) --- */

        /* 1. Banner */
        .med-banner {
            height: 500px;
            background: linear-gradient(to right, rgba(21, 101, 192, 0.8), rgba(183, 28, 28, 0.3)), url('#');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: #fff;
        }
        .banner-content h1 { font-size: 48px; margin-bottom: 20px; font-weight: bold; text-shadow: 0 2px 10px rgba(0,0,0,0.3); }
        .banner-content p { font-size: 22px; background: rgba(255,255,255,0.2); display: inline-block; padding: 5px 25px; border-radius: 50px; backdrop-filter: blur(5px); border: 1px solid rgba(255,255,255,0.3); }

        /* 2. 公司简介 */
        .intro-section { padding: 80px 0; background: #fff; }
        .intro-flex { display: flex; gap: 50px; align-items: center; }
        .intro-img { flex: 1; position: relative; }
        .intro-img img { border-radius: 10px; box-shadow: 0 10px 30px rgba(21, 101, 192, 0.2); }
        .intro-img::before { content: ''; position: absolute; top: -20px; left: -20px; width: 100px; height: 100px; border-top: 5px solid var(--medical-blue); border-left: 5px solid var(--medical-blue); }
        
        .intro-text { flex: 1.2; }
        .intro-text h2 { color: var(--medical-blue); font-size: 32px; margin-bottom: 20px; }
        .intro-text h2 span { color: var(--primary-red); }
        .intro-text p { color: #555; margin-bottom: 15px; text-align: justify; line-height: 1.8; }
        .tag-row { display: flex; gap: 10px; margin-top: 20px; flex-wrap: wrap; }
        .m-tag { background: var(--bg-light); color: var(--medical-blue); padding: 5px 15px; border-radius: 4px; font-size: 13px; font-weight: bold; }

        /* 3. 5合1 疗法 */
        .therapy-section { background: #f8f9fa; padding: 60px 0; text-align: center; }
        .therapy-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 15px; margin-top: 40px; }
        .therapy-card { background: #fff; padding: 30px 15px; border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: 0.3s; border-top: 3px solid transparent; }
        .therapy-card:hover { transform: translateY(-10px); border-top-color: var(--medical-blue); box-shadow: 0 10px 25px rgba(21, 101, 192, 0.15); }
        .t-icon { font-size: 36px; margin-bottom: 15px; color: var(--medical-blue); }
        .therapy-card h4 { font-size: 16px; margin-bottom: 10px; }
        .therapy-card p { font-size: 12px; color: #777; }

        /* 4. 核心康复项目 (Grid) */
        .project-section { padding: 80px 0; background: #fff; }
        .section-title { text-align: center; margin-bottom: 50px; }
        .section-title h2 { font-size: 32px; color: #333; }
        .section-title p { color: #888; margin-top: 10px; }
        
        .project-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
        .project-item { position: relative; height: 220px; overflow: hidden; border-radius: 8px; cursor: pointer; }
        .project-item img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
        .project-item:hover img { transform: scale(1.1); }
        .p-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.2)); display: flex; flex-direction: column; justify-content: flex-end; padding: 20px; color: #fff; }
        .p-overlay h3 { font-size: 18px; margin-bottom: 5px; }
        .p-overlay p { font-size: 12px; opacity: 0.8; height: 0; overflow: hidden; transition: 0.3s; }
        .project-item:hover .p-overlay p { height: auto; margin-top: 5px; }
        .p-icon { position: absolute; top: 15px; right: 15px; font-size: 24px; color: #fff; background: rgba(255,255,255,0.2); padding: 5px; border-radius: 50%; }

        /* 5. 服务体系流程 */
        .system-section { background: var(--medical-blue); color: #fff; padding: 60px 0; text-align: center; }
        .system-steps { display: flex; justify-content: center; align-items: center; margin-top: 40px; gap: 20px; }
        .sys-step { position: relative; width: 160px; }
        .sys-circle { width: 80px; height: 80px; border: 2px solid rgba(255,255,255,0.3); border-radius: 50%; margin: 0 auto 15px; display: flex; align-items: center; justify-content: center; font-size: 28px; background: rgba(255,255,255,0.1); }
        .sys-arrow { font-size: 24px; color: rgba(255,255,255,0.5); }

        /* 6. CTA */
        .med-cta { text-align: center; padding: 50px 0; background: url('#') center/cover; }
        .cta-btn { display: inline-block; background: var(--primary-red); color: #fff; padding: 12px 40px; border-radius: 50px; font-size: 18px; margin-top: 20px; font-weight: bold; box-shadow: 0 5px 15px rgba(183, 28, 28, 0.3); }

        /* Footer */
        footer { background: #222; color: #aaa; padding: 40px 0; text-align: center; }

        /* 响应式 */
        @media (max-width: 768px) {
            .nav-list { display: none; }
            .mobile-menu-btn { display: block; }
            .header-main .container { flex-direction: column; gap: 10px; }
            .intro-flex { flex-direction: column; }
            .therapy-grid { grid-template-columns: 1fr 1fr; }
            .project-grid { grid-template-columns: 1fr 1fr; }
            .system-steps { flex-direction: column; gap: 10px; }
            .sys-arrow { transform: rotate(90deg); }
        }