
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Microsoft YaHei', 'PingFang TC', Arial, sans-serif;
            line-height: 1.8;
            color: #333;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            min-height: 100vh;
        }
        
        article {
            max-width: 1200px;
            margin: 0 auto;
            background: #fff;
            box-shadow: 0 10px 40px rgba(0,0,0,0.15);
        }
        
        .hero-section {
            background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
            color: white;
            padding: 60px 40px;
            text-align: center;
        }
        
        .hero-section h1 {
            font-size: 2.5em;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        
        .hero-image {
            width: 100%;
            max-width: 800px;
            height: auto;
            margin: 30px auto;
            border-radius: 15px;
            box-shadow: 0 8px 30px rgba(0,0,0,0.2);
        }
        
        .content-section {
            padding: 50px 40px;
        }
        
        .intro-text {
            font-size: 1.2em;
            color: #555;
            margin-bottom: 40px;
            padding: 30px;
            background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
            border-left: 5px solid #2196F3;
            border-radius: 10px;
        }
        
        .clinic-name {
            color: #1976D2;
            font-weight: bold;
        }
        
        h2 {
            color: #1565C0;
            font-size: 2em;
            margin: 40px 0 20px;
            padding-bottom: 15px;
            border-bottom: 3px solid #2196F3;
        }
        
        h3 {
            color: #1976D2;
            font-size: 1.5em;
            margin: 30px 0 15px;
            padding-left: 15px;
            border-left: 4px solid #42A5F5;
        }
        
        h4 {
            color: #1E88E5;
            font-size: 1.2em;
            margin: 20px 0 10px;
        }
        
        p {
            margin-bottom: 20px;
            text-align: justify;
        }
        
        ul, ol {
            margin: 20px 0 20px 30px;
        }
        
        li {
            margin-bottom: 12px;
            line-height: 1.8;
        }
        
        .info-table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }
        
        .info-table th {
            background: linear-gradient(135deg, #1976D2 0%, #1565C0 100%);
            color: white;
            padding: 15px;
            text-align: left;
            font-size: 1.1em;
        }
        
        .info-table td {
            padding: 15px;
            border-bottom: 1px solid #e0e0e0;
        }
        
        .info-table tr:nth-child(even) {
            background-color: #f5f5f5;
        }
        
        .info-table tr:hover {
            background-color: #e3f2fd;
        }
        
        .warning-box {
            background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
            border-left: 5px solid #FF9800;
            padding: 25px;
            margin: 30px 0;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }
        
        .warning-box h3 {
            color: #F57C00;
            border-left: none;
            padding-left: 0;
            margin-top: 0;
        }
        
        .emergency-box {
            background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
            border-left: 5px solid #f44336;
            padding: 25px;
            margin: 30px 0;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }
        
        .emergency-box h3 {
            color: #c62828;
            border-left: none;
            padding-left: 0;
            margin-top: 0;
        }
        
        .faq-section {
            background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
            padding: 50px 40px;
            margin-top: 50px;
        }
        
        .faq-section h2 {
            text-align: center;
            color: #1565C0;
            margin-bottom: 40px;
        }
        
        .faq-item {
            background: white;
            margin-bottom: 15px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
        }
        
        .faq-question {
            background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
            color: white;
            padding: 20px;
            cursor: pointer;
            font-size: 1.1em;
            font-weight: bold;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }
        
        .faq-question:hover {
            background: linear-gradient(135deg, #1976D2 0%, #1565C0 100%);
        }
        
        .faq-question::after {
            content: '+';
            font-size: 1.5em;
            transition: transform 0.3s ease;
        }
        
        .faq-question.active::after {
            transform: rotate(45deg);
        }
        
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            background: white;
        }
        
        .faq-answer.active {
            max-height: 1000px;
        }
        
        .faq-answer-content {
            padding: 20px;
            line-height: 1.8;
            color: #555;
        }
        
        .contact-section {
            background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
            color: white;
            padding: 50px 40px;
            text-align: center;
        }
        
        .contact-section h2 {
            color: white;
            border-bottom: 3px solid white;
            display: inline-block;
            padding-bottom: 15px;
            margin-bottom: 30px;
        }
        
        .contact-info {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }
        
        .contact-item {
            background: rgba(255,255,255,0.1);
            padding: 25px;
            border-radius: 10px;
            backdrop-filter: blur(10px);
        }
        
        .contact-item h3 {
            color: white;
            border-left: none;
            padding-left: 0;
            margin-bottom: 15px;
        }
        
        .whatsapp-btn {
            display: inline-block;
            background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
            color: white;
            padding: 18px 40px;
            text-decoration: none;
            border-radius: 50px;
            font-size: 1.2em;
            font-weight: bold;
            margin: 20px 10px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(0,0,0,0.2);
        }
        
        .whatsapp-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.3);
        }
        
        .phone-btn {
            display: inline-block;
            background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
            color: white;
            padding: 18px 40px;
            text-decoration: none;
            border-radius: 50px;
            font-size: 1.2em;
            font-weight: bold;
            margin: 20px 10px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(0,0,0,0.2);
        }
        
        .phone-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.3);
        }
        
        .related-articles {
            padding: 50px 40px;
            background: #f9f9f9;
        }
        
        .related-articles h2 {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .article-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .article-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }
        
        .article-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }
        
        .article-card h3 {
            color: #1976D2;
            padding: 20px;
            border-left: none;
            margin: 0;
        }
        
        .article-card p {
            padding: 0 20px 20px;
            color: #666;
        }
        
        .article-card a {
            display: block;
            background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
            color: white;
            text-align: center;
            padding: 15px;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .article-card a:hover {
            background: linear-gradient(135deg, #1976D2 0%, #1565C0 100%);
        }
        
        @media (max-width: 768px) {
            .hero-section {
                padding: 40px 20px;
            }
            
            .hero-section h1 {
                font-size: 1.8em;
            }
            
            .content-section {
                padding: 30px 20px;
            }
            
            h2 {
                font-size: 1.5em;
            }
            
            .contact-info {
                grid-template-columns: 1fr;
            }
            
            .whatsapp-btn, .phone-btn {
                display: block;
                margin: 10px 0;
            }
        }
    