
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Microsoft JhengHei', 'PingFang TC', 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.8;
            color: #333;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            padding: 20px;
        }
        
        .article-container {
            max-width: 1000px;
            margin: 0 auto;
            background: #ffffff;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            overflow: hidden;
        }
        
        .article-content {
            padding: 40px 50px;
        }
        
        h1 {
            font-size: 2.5em;
            color: #2c3e50;
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 4px solid #3498db;
            line-height: 1.3;
        }
        
        .article-meta {
            display: flex;
            gap: 20px;
            margin-bottom: 30px;
            padding: 15px;
            background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
            border-radius: 10px;
            flex-wrap: wrap;
        }
        
        .meta-item {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #1976d2;
            font-weight: 500;
        }
        
        .intro-section {
            background: linear-gradient(135deg, #e8f4f8 0%, #d4e9f7 100%);
            padding: 30px;
            border-radius: 15px;
            margin-bottom: 30px;
            border-left: 5px solid #3498db;
        }
        
        .intro-section p {
            font-size: 1.1em;
            color: #2c3e50;
            line-height: 1.9;
        }
        
        h2 {
            font-size: 2em;
            color: #2980b9;
            margin-top: 40px;
            margin-bottom: 20px;
            padding-left: 15px;
            border-left: 6px solid #3498db;
        }
        
        h3 {
            font-size: 1.5em;
            color: #34495e;
            margin-top: 30px;
            margin-bottom: 15px;
            padding-left: 10px;
            border-left: 4px solid #5dade2;
        }
        
        h4 {
            font-size: 1.2em;
            color: #555;
            margin-top: 20px;
            margin-bottom: 10px;
        }
        
        p {
            margin-bottom: 18px;
            text-align: justify;
            font-size: 1.05em;
        }
        
        .highlight-box {
            background: linear-gradient(135deg, #fff9e6 0%, #fff3cd 100%);
            padding: 25px;
            border-radius: 12px;
            margin: 25px 0;
            border-left: 5px solid #f39c12;
        }
        
        .warning-box {
            background: linear-gradient(135deg, #ffe6e6 0%, #ffcccc 100%);
            padding: 25px;
            border-radius: 12px;
            margin: 25px 0;
            border-left: 5px solid #e74c3c;
        }
        
        .info-box {
            background: linear-gradient(135deg, #e8f8f5 0%, #d0ece7 100%);
            padding: 25px;
            border-radius: 12px;
            margin: 25px 0;
            border-left: 5px solid #16a085;
        }
        
        .emergency-box {
            background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
            padding: 30px;
            border-radius: 12px;
            margin: 30px 0;
            border: 3px solid #e74c3c;
            box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
        }
        
        ul, ol {
            margin: 20px 0;
            padding-left: 30px;
        }
        
        li {
            margin-bottom: 12px;
            line-height: 1.8;
        }
        
        .reason-card {
            background: #ffffff;
            padding: 25px;
            margin: 20px 0;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            border-top: 4px solid #3498db;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .reason-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);
        }
        
        .reason-card h3 {
            border: none;
            padding: 0;
            margin-top: 0;
        }
        
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
            background: #ffffff;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            border-radius: 10px;
            overflow: hidden;
        }
        
        thead {
            background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
            color: white;
        }
        
        th, td {
            padding: 15px;
            text-align: left;
            border-bottom: 1px solid #ecf0f1;
        }
        
        th {
            font-weight: 600;
            font-size: 1.1em;
        }
        
        tbody tr:hover {
            background: #e8f4f8;
        }
        
        .timeline-item {
            position: relative;
            padding-left: 40px;
            margin-bottom: 25px;
            border-left: 3px solid #3498db;
        }
        
        .timeline-item::before {
            content: '';
            position: absolute;
            left: -8px;
            top: 0;
            width: 15px;
            height: 15px;
            background: #3498db;
            border-radius: 50%;
        }
        
        .timeline-time {
            font-weight: bold;
            color: #e74c3c;
            font-size: 1.2em;
            margin-bottom: 5px;
        }
        
        .faq-section {
            margin-top: 50px;
            padding: 40px;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border-radius: 15px;
        }
        
        .faq-title {
            font-size: 2.2em;
            color: #2c3e50;
            margin-bottom: 30px;
            text-align: center;
            border: none;
            padding: 0;
        }
        
        .faq-item {
            background: #ffffff;
            margin-bottom: 15px;
            border-radius: 10px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
            overflow: hidden;
        }
        
        .faq-question {
            padding: 20px 25px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
            transition: all 0.3s ease;
            border-left: 5px solid #3498db;
        }
        
        .faq-question:hover {
            background: linear-gradient(135deg, #e8f4f8 0%, #d4e9f7 100%);
        }
        
        .faq-question h3 {
            margin: 0;
            font-size: 1.2em;
            color: #2c3e50;
            border: none;
            padding: 0;
        }
        
        .faq-icon {
            font-size: 1.5em;
            color: #3498db;
            transition: transform 0.3s ease;
        }
        
        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }
        
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            padding: 0 25px;
            background: #ffffff;
        }
        
        .faq-item.active .faq-answer {
            max-height: 1500px;
            padding: 20px 25px;
        }
        
        .faq-answer p {
            margin: 0 0 10px 0;
            color: #555;
            line-height: 1.8;
        }
        
        .contact-section {
            margin-top: 50px;
            padding: 40px;
            background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
            border-radius: 15px;
            color: white;
            text-align: center;
        }
        
        .contact-section h2 {
            color: white;
            border: none;
            padding: 0;
            margin: 0 0 25px 0;
        }
        
        .contact-info {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }
        
        .contact-item {
            background: rgba(255, 255, 255, 0.15);
            padding: 20px;
            border-radius: 10px;
            backdrop-filter: blur(10px);
        }
        
        .contact-item h3 {
            color: white;
            font-size: 1.1em;
            margin: 0 0 10px 0;
            border: none;
            padding: 0;
        }
        
        .contact-item p {
            margin: 5px 0;
            font-size: 1.05em;
        }
        
        .whatsapp-btn {
            display: inline-block;
            margin-top: 25px;
            padding: 15px 40px;
            background: #25d366;
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-size: 1.2em;
            font-weight: bold;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
        }
        
        .whatsapp-btn:hover {
            background: #128c7e;
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
        }
        
        .related-articles {
            margin-top: 50px;
            padding: 40px;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border-radius: 15px;
        }
        
        .related-articles h2 {
            color: #2c3e50;
            margin-top: 0;
            margin-bottom: 25px;
            text-align: center;
        }
        
        .article-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }
        
        .article-card {
            background: white;
            padding: 25px;
            border-radius: 12px;
            box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            text-decoration: none;
            color: inherit;
            display: block;
        }
        
        .article-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);
        }
        
        .article-card h3 {
            color: #2980b9;
            margin: 0 0 10px 0;
            border: none;
            padding: 0;
            font-size: 1.2em;
        }
        
        .article-card p {
            margin: 0;
            color: #666;
            font-size: 0.95em;
        }
        
        @media (max-width: 768px) {
            body {
                padding: 10px;
            }
            
            .article-content {
                padding: 25px 20px;
            }
            
            h1 {
                font-size: 1.8em;
            }
            
            h2 {
                font-size: 1.5em;
            }
            
            h3 {
                font-size: 1.2em;
            }
            
            .article-meta {
                flex-direction: column;
                gap: 10px;
            }
            
            .contact-info {
                grid-template-columns: 1fr;
            }
            
            table {
                font-size: 0.9em;
            }
            
            th, td {
                padding: 10px;
            }
        }
    