* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', sans-serif;
    background: #f5f7fa;
    color: #1e2a3e;
    line-height: 1.5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========= 头部 ========= */
header {
    background: white;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 16px 24px;
}

.logo h1 {
    color: #0077B6;
    font-size: 1.6rem;
    letter-spacing: 1px;
}

.logo-sub {
    font-size: 0.75rem;
    color: #2c7da0;
    font-weight: 500;
}

nav ul {
    display: flex;
    gap: 24px;
    list-style: none;
    flex-wrap: wrap;
}

nav a {
    text-decoration: none;
    color: #2d3e50;
    font-weight: 500;
    transition: 0.2s;
}

nav a:hover {
    color: #0077B6;
}

/* ========= Hero ========= */
.hero {
    background: linear-gradient(135deg, #0a4b6e 0%, #1a6d8a 100%);
    min-height: 380px;
    display: flex;
    align-items: center;
    color: white;
    position: relative;
}

.hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.hero-badge {
    background: #00b4d8;
    padding: 8px 20px;
    border-radius: 40px;
    font-size: 0.9rem;
    font-weight: bold;
    display: inline-block;
}

/* ========= 通用标题 ========= */
.section-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 48px;
    color: #023e8a;
    position: relative;
}

.section-title:after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #00b4d8;
    margin: 12px auto 0;
    border-radius: 4px;
}

/* ========= 医院概况 ========= */
.intro-section {
    padding: 60px 0;
    background: white;
}

.intro-card {
    background: #f8fafc;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.intro-card p {
    margin-bottom: 16px;
    line-height: 1.7;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

.info-grid div {
    background: white;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 0.9rem;
}

/* ========= 科室介绍 ========= */
.departments-section {
    padding: 60px 0;
    background: #f0f6fa;
}

.dept-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.dept-card {
    background: white;
    border-radius: 20px;
    padding: 28px 16px;
    text-align: center;
    transition: 0.2s;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.dept-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 20px rgba(0,119,182,0.1);
}

.dept-icon {
    font-size: 40px;
    margin-bottom: 12px;
}

.dept-card h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #0077B6;
}

.dept-card p {
    font-size: 0.85rem;
    color: #5e7a93;
}

.featured-dept {
    background: white;
    border-radius: 20px;
    padding: 24px;
    border-left: 5px solid #00b4d8;
    margin-top: 20px;
}

.featured-dept h4 {
    font-size: 1.2rem;
    color: #023e8a;
    margin-bottom: 10px;
}

/* ========= 专家团队 ========= */
.experts-section {
    padding: 60px 0;
    background: white;
}

.expert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
}

.expert-card {
    text-align: center;
    background: #f8fafc;
    border-radius: 24px;
    padding: 32px 20px;
    transition: 0.2s;
}

.expert-avatar {
    font-size: 56px;
    margin-bottom: 12px;
}

.expert-card h4 {
    font-size: 1.3rem;
    color: #023e8a;
    margin-bottom: 6px;
}

.expert-title {
    color: #0077B6;
    font-weight: 500;
    margin-bottom: 8px;
}

.expert-skill {
    color: #5e7a93;
    font-size: 0.9rem;
}

/* ========= 就医指南 ========= */
.guide-section {
    padding: 60px 0;
    background: #e8f4f8;
}

.guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
}

.guide-item {
    text-align: center;
    background: white;
    border-radius: 20px;
    padding: 32px 20px;
}

.guide-icon {
    font-size: 40px;
    margin-bottom: 12px;
}

.guide-item h4 {
    font-size: 1.2rem;
    color: #023e8a;
    margin-bottom: 8px;
}

/* ========= 价格公示 ========= */
.pricing-section {
    padding: 60px 0;
    background: white;
}

.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

.pricing-card {
    background: #f8fafc;
    border-radius: 20px;
    padding: 24px;
    flex: 1;
    min-width: 200px;
    text-align: center;
}

.pricing-card.full-width {
    width: 100%;
    flex: 100%;
    text-align: left;
}

.pricing-card h4 {
    color: #023e8a;
    margin-bottom: 16px;
}

.price {
    font-size: 1.3rem;
}

.price strong {
    color: #0077B6;
}

.price-list {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    list-style: none;
    margin-top: 12px;
}

.price-list li {
    background: white;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.9rem;
}

.price-note {
    text-align: center;
    font-size: 0.8rem;
    color: #8ba0b5;
    margin-top: 24px;
}

/* ========= 联系我们 ========= */
.contact-section {
    padding: 60px 0;
    background: #f0f6fa;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.contact-info {
    background: white;
    border-radius: 20px;
    padding: 28px;
}

.contact-info p {
    margin-bottom: 16px;
    line-height: 1.6;
}

.map-placeholder {
    background: #e2e8f0;
    border-radius: 20px;
    padding: 60px 20px;
    text-align: center;
    color: #5e7a93;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ========= 页脚 ========= */
footer {
    background: #0a2a38;
    color: #cbd5e6;
    padding: 32px 0;
    text-align: center;
    font-size: 0.85rem;
}

.footer-container p {
    margin: 6px 0;
}

.footer-beian a {
    color: #9ec8e0;
    text-decoration: none;
}

.footer-beian a:hover {
    text-decoration: underline;
}

.footer-tip {
    opacity: 0.6;
    font-size: 0.75rem;
}

/* ========= 响应式 ========= */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 12px;
    }
    
    nav ul {
        justify-content: center;
        gap: 16px;
    }
    
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .price-list {
        flex-direction: column;
    }
}

/* ========= 新增样式（医院概况优化、特色科室增强） ========= */

/* Hero 统计区域 */
.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 30px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    background: rgba(255,255,255,0.15);
    padding: 12px 24px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
}

.stat-label {
    font-size: 0.8rem;
    opacity: 0.9;
}

.hero-badge-new {
    background: #00b4d8;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 20px;
}

/* 医院徽章 */
.intro-header {
    margin-bottom: 20px;
}

.hospital-badge {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.badge {
    background: linear-gradient(135deg, #0077B6, #00b4d8);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

/* 特色科室增强 */
.featured-dept {
    background: linear-gradient(135deg, #fff, #f8fcff);
    border-radius: 24px;
    padding: 28px;
    border-left: 5px solid #00b4d8;
    margin-top: 30px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.featured-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.featured-icon {
    font-size: 28px;
}

.featured-header h4 {
    font-size: 1.3rem;
    color: #023e8a;
    margin: 0;
}

.featured-content p {
    margin-bottom: 16px;
    line-height: 1.7;
}

.featured-equipment, .featured-scope, .featured-target {
    margin: 16px 0;
    padding: 12px 16px;
    background: white;
    border-radius: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.featured-equipment strong, .featured-scope strong, .featured-target strong {
    width: 100%;
    color: #0077B6;
    margin-bottom: 8px;
}

.featured-equipment span, .featured-scope span, .featured-target span {
    background: #e8f4f8;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #023e8a;
}

/* 荣誉资质 */
.honor-section {
    padding: 60px 0;
    background: white;
}

.honor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.honor-item {
    background: linear-gradient(135deg, #f8fafc, #fff);
    border-radius: 20px;
    padding: 24px;
    text-align: center;
    transition: 0.3s;
    border: 1px solid #e2e8f0;
}

.honor-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0,119,182,0.1);
}

.honor-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.honor-item p {
    font-weight: 500;
    color: #1e2a3e;
}

/* 专家团队增强 */
.expert-dept {
    color: #00b4d8;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 8px;
}

.expert-desc {
    font-size: 0.8rem;
    color: #5e7a93;
    margin-top: 10px;
    line-height: 1.5;
}

/* 就医指南增强 */
.guide-note {
    font-size: 0.7rem;
    color: #8ba0b5;
    margin-top: 6px;
}

/* 价格公示小字 */
.price-note-small {
    font-size: 0.7rem;
    color: #8ba0b5;
}

/* 响应式适配 */
@media (max-width: 768px) {
    .hero-stats {
        gap: 16px;
    }
    
    .stat-item {
        padding: 8px 16px;
    }
    
    .stat-number {
        font-size: 1.2rem;
    }
    
    .featured-equipment, .featured-scope, .featured-target {
        flex-direction: column;
        gap: 8px;
    }
    
    .honor-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}