
        * {
            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, #e3f2fd 0%, #f5f5f5 100%);
        }
        
        .article-container {
            max-width: 900px;
            margin: 40px auto;
            background: #ffffff;
            border-radius: 16px;
            box-shadow: 0 8px 30px rgba(0,0,0,0.12);
            overflow: hidden;
        }
        
        .article-header {
            background: linear-gradient(135deg, #1976d2 0%, #42a5f5 100%);
            color: white;
            padding: 50px 40px;
            text-align: center;
        }
        
        .article-header h1 {
            font-size: 2.2em;
            margin-bottom: 20px;
            font-weight: 700;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
        }
        
        .article-meta {
            font-size: 0.95em;
            opacity: 0.95;
            margin-top: 15px;
        }
        
        .article-content {
            padding: 50px 40px;
        }
        
        .intro-section {
            background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
            padding: 30px;
            border-radius: 12px;
            margin-bottom: 40px;
            border-left: 5px solid #1976d2;
        }
        
        .intro-section p {
            font-size: 1.1em;
            line-height: 1.9;
            color: #1565c0;
        }
        
        .featured-image {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: 12px;
            margin: 30px 0;
            box-shadow: 0 4px 20px rgba(0,0,0,0.15);
        }
        
        h2 {
            color: #1976d2;
            font-size: 1.8em;
            margin: 40px 0 20px;
            padding-bottom: 15px;
            border-bottom: 3px solid #42a5f5;
            font-weight: 700;
        }
        
        h3 {
            color: #1565c0;
            font-size: 1.4em;
            margin: 30px 0 15px;
            font-weight: 600;
        }
        
        p {
            margin-bottom: 20px;
            text-align: justify;
            font-size: 1.05em;
            color: #444;
        }
        
        ul, ol {
            margin: 20px 0 20px 25px;
        }
        
        li {
            margin-bottom: 12px;
            line-height: 1.8;
            color: #555;
        }
        
        .highlight-box {
            background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
            border-left: 5px solid #ff9800;
            padding: 25px;
            margin: 30px 0;
            border-radius: 8px;
        }
        
        .info-table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
            border-radius: 8px;
            overflow: hidden;
        }
        
        .info-table th {
            background: linear-gradient(135deg, #1976d2 0%, #42a5f5 100%);
            color: white;
            padding: 18px;
            text-align: left;
            font-weight: 600;
            font-size: 1.1em;
        }
        
        .info-table td {
            padding: 16px 18px;
            border-bottom: 1px solid #e0e0e0;
            background: #fafafa;
        }
        
        .info-table tr:last-child td {
            border-bottom: none;
        }
        
        .info-table tr:hover td {
            background: #f5f5f5;
        }
        
        .faq-section {
            margin: 50px 0;
        }
        
        .faq-item {
            background: white;
            margin-bottom: 15px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
            border: 1px solid #e3f2fd;
        }
        
        .faq-question {
            background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
            padding: 20px 25px;
            cursor: pointer;
            font-weight: 600;
            font-size: 1.1em;
            color: #1565c0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }
        
        .faq-question:hover {
            background: linear-gradient(135deg, #bbdefb 0%, #90caf9 100%);
        }
        
        .faq-question::after {
            content: '+';
            font-size: 1.5em;
            font-weight: bold;
            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: #fafafa;
        }
        
        .faq-answer-content {
            padding: 20px 25px;
            color: #555;
            line-height: 1.8;
        }
        
        .contact-section {
            background: linear-gradient(135deg, #1976d2 0%, #42a5f5 100%);
            color: white;
            padding: 40px;
            border-radius: 12px;
            margin: 50px 0;
            text-align: center;
        }
        
        .contact-section h3 {
            color: white;
            font-size: 1.8em;
            margin-bottom: 25px;
        }
        
        .contact-info {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        
        .contact-item {
            background: rgba(255,255,255,0.15);
            padding: 20px;
            border-radius: 8px;
            backdrop-filter: blur(10px);
        }
        
        .contact-item strong {
            display: block;
            margin-bottom: 8px;
            font-size: 1.1em;
        }
        
        .whatsapp-btn {
            display: inline-block;
            background: #25D366;
            color: white;
            padding: 18px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.15em;
            margin-top: 25px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(37,211,102,0.4);
        }
        
        .whatsapp-btn:hover {
            background: #20ba5a;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(37,211,102,0.5);
        }
        
        @media (max-width: 768px) {
            .article-container {
                margin: 20px;
                border-radius: 12px;
            }
            
            .article-header {
                padding: 35px 25px;
            }
            
            .article-header h1 {
                font-size: 1.6em;
            }
            
            .article-content {
                padding: 30px 25px;
            }
            
            h2 {
                font-size: 1.5em;
            }
            
            h3 {
                font-size: 1.2em;
            }
            
            .contact-info {
                grid-template-columns: 1fr;
            }
        }
    