
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', 'Microsoft JhengHei', 'PingFang TC', 'Noto Sans TC', sans-serif;
            line-height: 1.8;
            color: #333;
            background: linear-gradient(135deg, #e3f2fd 0%, #ffffff 50%, #e1f5fe 100%);
            overflow-x: hidden;
        }
        
        .article-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        .hero-section {
            background: linear-gradient(135deg, #1e88e5 0%, #2196F3 100%);
            color: white;
            padding: 60px 40px;
            border-radius: 20px;
            margin-bottom: 40px;
            box-shadow: 0 10px 40px rgba(30, 136, 229, 0.3);
            text-align: center;
            animation: fadeInDown 0.8s ease;
        }
        
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        h1 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
        }
        
        .hero-subtitle {
            font-size: 1.2rem;
            opacity: 0.95;
            font-weight: 300;
        }
        
        .featured-image {
            width: 100%;
            max-width: 900px;
            margin: 40px auto;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
            animation: fadeIn 1s ease;
        }
        
        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }
        
        .featured-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.3s ease;
        }
        
        .featured-image:hover img {
            transform: scale(1.05);
        }
        
        .content-section {
            background: white;
            padding: 50px;
            border-radius: 15px;
            margin-bottom: 30px;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
            animation: fadeInUp 0.8s ease;
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .intro-text {
            font-size: 1.15rem;
            color: #555;
            line-height: 2;
            padding: 30px;
            background: linear-gradient(135deg, #e3f2fd 0%, #ffffff 100%);
            border-left: 5px solid #1e88e5;
            border-radius: 10px;
            margin-bottom: 40px;
        }
        
        h2 {
            font-size: 2rem;
            color: #1e88e5;
            margin: 40px 0 25px;
            padding-bottom: 15px;
            border-bottom: 3px solid #2196F3;
            position: relative;
        }
        
        h2::before {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 60px;
            height: 3px;
            background: #1e88e5;
        }
        
        h3 {
            font-size: 1.5rem;
            color: #2196F3;
            margin: 30px 0 20px;
            padding-left: 15px;
            border-left: 4px solid #1e88e5;
        }
        
        p {
            margin-bottom: 20px;
            font-size: 1.05rem;
            color: #444;
        }
        
        .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(255, 152, 0, 0.15);
        }
        
        .warning-box h3 {
            color: #f57c00;
            border: none;
            padding-left: 0;
            margin-top: 0;
        }
        
        .emergency-box {
            background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
            border-left: 5px solid #e53935;
            padding: 25px;
            margin: 30px 0;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(229, 57, 53, 0.15);
        }
        
        .emergency-box h3 {
            color: #c62828;
            border: none;
            padding-left: 0;
            margin-top: 0;
        }
        
        .info-box {
            background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
            border-left: 5px solid #1e88e5;
            padding: 25px;
            margin: 30px 0;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(30, 136, 229, 0.15);
        }
        
        .info-box h3 {
            color: #1565c0;
            border: none;
            padding-left: 0;
            margin-top: 0;
        }
        
        ul, ol {
            margin: 20px 0 20px 30px;
        }
        
        li {
            margin-bottom: 15px;
            font-size: 1.05rem;
            color: #444;
            line-height: 1.8;
        }
        
        .poison-table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            border-radius: 10px;
            overflow: hidden;
        }
        
        .poison-table thead {
            background: linear-gradient(135deg, #1e88e5 0%, #2196F3 100%);
            color: white;
        }
        
        .poison-table th {
            padding: 18px;
            text-align: left;
            font-weight: 600;
            font-size: 1.1rem;
        }
        
        .poison-table td {
            padding: 15px 18px;
            border-bottom: 1px solid #e0e0e0;
        }
        
        .poison-table tbody tr {
            background: white;
            transition: background 0.3s ease;
        }
        
        .poison-table tbody tr:nth-child(even) {
            background: #f5f5f5;
        }
        
        .poison-table tbody tr:hover {
            background: #e3f2fd;
        }
        
        .steps-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin: 40px 0;
        }
        
        .step-card {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            border-top: 5px solid #1e88e5;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .step-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 35px rgba(30, 136, 229, 0.2);
        }
        
        .step-number {
            background: linear-gradient(135deg, #1e88e5 0%, #2196F3 100%);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
            margin-bottom: 20px;
        }
        
        .faq-section {
            background: white;
            padding: 50px;
            border-radius: 15px;
            margin: 40px 0;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
        }
        
        .faq-item {
            margin-bottom: 20px;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            overflow: hidden;
            transition: border-color 0.3s ease;
        }
        
        .faq-item:hover {
            border-color: #1e88e5;
        }
        
        .faq-question {
            background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
            padding: 20px 25px;
            cursor: pointer;
            font-weight: 600;
            font-size: 1.1rem;
            color: #1e88e5;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background 0.3s ease;
        }
        
        .faq-question:hover {
            background: linear-gradient(135deg, #e3f2fd 0%, #ffffff 100%);
        }
        
        .faq-question::after {
            content: '+';
            font-size: 1.8rem;
            color: #1e88e5;
            transition: transform 0.3s ease;
        }
        
        .faq-question.active::after {
            content: '−';
            transform: rotate(180deg);
        }
        
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
            background: white;
        }
        
        .faq-answer.active {
            max-height: 1000px;
            padding: 25px;
        }
        
        .faq-answer p {
            margin-bottom: 15px;
        }
        
        .contact-section {
            background: linear-gradient(135deg, #1e88e5 0%, #2196F3 100%);
            color: white;
            padding: 50px;
            border-radius: 15px;
            margin: 40px 0;
            box-shadow: 0 10px 40px rgba(30, 136, 229, 0.3);
        }
        
        .contact-section h2 {
            color: white;
            border-bottom-color: rgba(255, 255, 255, 0.3);
        }
        
        .contact-section h2::before {
            background: white;
        }
        
        .contact-info {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin-top: 30px;
        }
        
        .contact-item {
            background: rgba(255, 255, 255, 0.15);
            padding: 25px;
            border-radius: 10px;
            backdrop-filter: blur(10px);
            transition: background 0.3s ease, transform 0.3s ease;
        }
        
        .contact-item:hover {
            background: rgba(255, 255, 255, 0.25);
            transform: translateY(-5px);
        }
        
        .contact-item h3 {
            color: white;
            border: none;
            padding-left: 0;
            margin-top: 0;
            font-size: 1.2rem;
        }
        
        .contact-item p {
            color: white;
            margin-bottom: 10px;
        }
        
        .contact-item a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            transition: opacity 0.3s ease;
        }
        
        .contact-item a:hover {
            opacity: 0.8;
            text-decoration: underline;
        }
        
        .whatsapp-btn {
            display: inline-block;
            background: #25D366;
            color: white;
            padding: 15px 35px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            margin-top: 20px;
            box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .whatsapp-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
        }
        
        .cta-box {
            background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
            padding: 40px;
            border-radius: 15px;
            text-align: center;
            margin: 40px 0;
            box-shadow: 0 5px 25px rgba(255, 152, 0, 0.15);
        }
        
        .cta-box h3 {
            color: #f57c00;
            border: none;
            padding-left: 0;
            margin-bottom: 20px;
        }
        
        @media (max-width: 768px) {
            h1 {
                font-size: 1.8rem;
            }
            
            .hero-section {
                padding: 40px 25px;
            }
            
            .content-section, .faq-section, .contact-section {
                padding: 30px 20px;
            }
            
            h2 {
                font-size: 1.6rem;
            }
            
            h3 {
                font-size: 1.3rem;
            }
            
            .steps-container {
                grid-template-columns: 1fr;
            }
            
            .poison-table {
                font-size: 0.9rem;
            }
            
            .poison-table th, .poison-table td {
                padding: 12px 10px;
            }
        }
        
        @media (max-width: 480px) {
            .article-container {
                padding: 10px;
            }
            
            h1 {
                font-size: 1.5rem;
            }
            
            .hero-subtitle {
                font-size: 1rem;
            }
            
            .intro-text {
                padding: 20px;
                font-size: 1rem;
            }
            
            p, li {
                font-size: 1rem;
            }
        }
    