/* 就医指南内容容器 */
.guide-container {
    padding: 80px 20px;
    background: #f9fafb;
}

.section-title {
    text-align: center;
    font-size: 32px;
    color: #004a9e;
    margin-bottom: 40px;
}

.guide-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.hospital-map {
    flex: 1;
    min-width: 300px;
}

.hospital-map img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.guide-text {
    flex: 1;
    min-width: 300px;
}

.guide-text h2 {
    font-size: 24px;
    color: #333;
    margin-top: 20px;
    margin-bottom: 10px;
}

.guide-text ul,
.guide-text ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

.guide-text li {
    line-height: 1.6;
    color: #555;
    margin-bottom: 10px;
}

/* 移动端适配 */
@media (max-width: 768px) {
    .guide-content {
        flex-direction: column;
    }

    .section-title {
        font-size: 28px;
    }

    .guide-text h2 {
        font-size: 20px;
    }
}
