
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Microsoft JhengHei', Arial, sans-serif;
            line-height: 1.8;
            color: #2c3e50;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            min-height: 100vh;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            background: white;
            box-shadow: 0 0 40px rgba(0,0,0,0.15);
            border-radius: 20px;
            margin-top: 20px;
            margin-bottom: 20px;
        }
        
        .header {
            background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
            color: white;
            padding: 50px 30px;
            border-radius: 20px 20px 0 0;
            text-align: center;
            margin: -20px -20px 30px -20px;
            position: relative;
            overflow: hidden;
        }
        
        .header::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="cross" patternUnits="userSpaceOnUse" width="20" height="20"><path d="M 10 0 L 10 20 M 0 10 L 20 10" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23cross)"/></svg>');
            animation: float 20s linear infinite;
        }
        
        @keyframes float {
            0% { transform: translate(-50%, -50%) rotate(0deg); }
            100% { transform: translate(-50%, -50%) rotate(360deg); }
        }
        
        h1 {
            font-size: 2.4em;
            margin-bottom: 20px;
            text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
            line-height: 1.2;
            position: relative;
            z-index: 2;
        }
        
        .subtitle {
            font-size: 1.2em;
            opacity: 0.95;
            margin-bottom: 25px;
            position: relative;
            z-index: 2;
        }
        
        .emergency-highlight {
            background: rgba(255,255,255,0.2);
            padding: 25px;
            border-radius: 15px;
            backdrop-filter: blur(15px);
            border: 2px solid rgba(255,255,255,0.3);
            position: relative;
            z-index: 2;
        }
        
        .emergency-highlight h3 {
            margin-bottom: 15px;
            font-size: 1.4em;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .timer-display {
            background: #f39c12;
            color: white;
            padding: 15px;
            border-radius: 10px;
            font-size: 1.3em;
            font-weight: bold;
            text-align: center;
            margin: 20px 0;
            animation: pulse 2s infinite;
        }
        
        .contact-buttons {
            display: flex;
            gap: 15px;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 25px;
        }
        
        .contact-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 15px 30px;
            background: #27ae60;
            color: white;
            text-decoration: none;
            border-radius: 30px;
            font-weight: bold;
            font-size: 1.1em;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(39, 174, 96, 0.3);
        }
        
        .contact-btn:hover {
            background: #219a52;
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(39, 174, 96, 0.4);
        }
        
        .whatsapp-btn {
            background: #25D366;
            box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
        }
        
        .whatsapp-btn:hover {
            background: #20ba5a;
            box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
        }
        
        h2 {
            color: #2c3e50;
            font-size: 2em;
            margin: 50px 0 25px 0;
            padding: 20px 0;
            border-bottom: 4px solid #e74c3c;
            position: relative;
            text-align: center;
        }
        
        h2::before {
            content: '';
            position: absolute;
            left: 50%;
            bottom: -4px;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: #3498db;
        }
        
        h3 {
            color: #e74c3c;
            font-size: 1.5em;
            margin: 35px 0 20px 0;
            padding: 15px 25px;
            background: linear-gradient(135deg, #fff5f5, #ffeaea);
            border-left: 5px solid #e74c3c;
            border-radius: 10px;
            box-shadow: 0 3px 10px rgba(231, 76, 60, 0.1);
        }
        
        p {
            margin-bottom: 20px;
            text-align: justify;
            font-size: 1.1em;
            color: #34495e;
            line-height: 1.8;
        }
        
        .critical-box {
            background: linear-gradient(135deg, #e74c3c, #c0392b);
            color: white;
            padding: 30px;
            border-radius: 15px;
            margin: 40px 0;
            box-shadow: 0 8px 25px rgba(231, 76, 60, 0.3);
            position: relative;
            overflow: hidden;
        }
        
        .critical-box::before {
            content: '⚠️';
            position: absolute;
            top: -10px;
            right: -10px;
            font-size: 4em;
            opacity: 0.2;
        }
        
        .critical-box h3 {
            color: white;
            background: none;
            border-left: 4px solid white;
            margin-bottom: 20px;
            box-shadow: none;
        }
        
        .golden-time-box {
            background: linear-gradient(135deg, #f39c12, #e67e22);
            color: white;
            padding: 30px;
            border-radius: 15px;
            margin: 40px 0;
            box-shadow: 0 8px 25px rgba(243, 156, 18, 0.3);
            position: relative;
        }
        
        .golden-time-box::before {
            content: '⏰';
            position: absolute;
            top: -10px;
            right: -10px;
            font-size: 4em;
            opacity: 0.2;
        }
        
        .golden-time-box h3 {
            color: white;
            background: none;
            border-left: 4px solid white;
            margin-bottom: 20px;
            box-shadow: none;
        }
        
        .step-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin: 40px 0;
        }
        
        .step-card {
            background: #f8f9fa;
            padding: 30px;
            border-radius: 15px;
            border-top: 5px solid #3498db;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            position: relative;
        }
        
        .step-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }
        
        .step-number {
            position: absolute;
            top: -15px;
            left: 30px;
            background: #3498db;
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.2em;
        }
        
        .step-card h4 {
            color: #2c3e50;
            font-size: 1.3em;
            margin: 10px 0 15px 0;
            padding-top: 10px;
        }
        
        .treatment-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }
        
        .treatment-card {
            background: linear-gradient(135deg, #74b9ff, #0984e3);
            color: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 8px 25px rgba(116, 185, 255, 0.3);
            transition: transform 0.3s ease;
        }
        
        .treatment-card:hover {
            transform: translateY(-5px);
        }
        
        .treatment-card h4 {
            font-size: 1.4em;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        ul {
            padding-left: 30px;
            margin-bottom: 20px;
        }
        
        li {
            margin-bottom: 12px;
            color: inherit;
            font-size: 1.05em;
        }
        
        .warning-list li {
            color: #e74c3c;
            font-weight: 500;
        }
        
        .do-dont-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin: 40px 0;
        }
        
        .do-box {
            background: linear-gradient(135deg, #00b894, #00a085);
            color: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 8px 25px rgba(0, 184, 148, 0.3);
        }
        
        .dont-box {
            background: linear-gradient(135deg, #e17055, #d63031);
            color: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 8px 25px rgba(225, 112, 85, 0.3);
        }
        
        .do-box h4, .dont-box h4 {
            font-size: 1.3em;
            margin-bottom: 20px;
            text-align: center;
        }
        
        .faq-section {
            margin: 60px 0;
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }
        
        .faq-title {
            text-align: center;
            color: #2c3e50;
            font-size: 2.2em;
            margin-bottom: 40px;
            position: relative;
        }
        
        .faq-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: #e74c3c;
            border-radius: 2px;
        }
        
        .faq-item {
            margin-bottom: 20px;
            border: 1px solid #dee2e6;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }
        
        .faq-item:hover {
            box-shadow: 0 5px 20px rgba(0,0,0,0.15);
        }
        
        .faq-question {
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            padding: 25px;
            cursor: pointer;
            font-weight: bold;
            font-size: 1.15em;
            transition: all 0.3s ease;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        .faq-question:hover {
            background: linear-gradient(135deg, #5a6fd8, #6a4190);
        }
        
        .faq-question::after {
            content: '+';
            font-size: 1.8em;
            font-weight: bold;
            transition: transform 0.3s ease;
        }
        
        .faq-question.active::after {
            content: '−';
            transform: rotate(180deg);
        }
        
        .faq-answer {
            padding: 0;
            max-height: 0;
            overflow: hidden;
            background: white;
            transition: all 0.4s ease;
        }
        
        .faq-answer.active {
            padding: 25px;
            max-height: 1000px;
        }
        
        .faq-answer p {
            margin-bottom: 15px;
            color: #555;
        }
        
        @media (max-width: 768px) {
            .container {
                margin: 10px;
                padding: 15px;
            }
            
            h1 {
                font-size: 1.8em;
            }
            
            h2 {
                font-size: 1.6em;
            }
            
            .contact-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .contact-btn {
                width: 100%;
                justify-content: center;
                max-width: 350px;
            }
            
            .step-container, .treatment-grid {
                grid-template-columns: 1fr;
            }
            
            .do-dont-container {
                grid-template-columns: 1fr;
            }
        }
        
        .floating-emergency {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background: #e74c3c;
            color: white;
            padding: 15px;
            border-radius: 50px;
            box-shadow: 0 5px 20px rgba(231, 76, 60, 0.4);
            z-index: 1000;
            animation: bounce 2s infinite;
            cursor: pointer;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: bold;
        }
        
        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
            40% { transform: translateY(-10px); }
            60% { transform: translateY(-5px); }
        }
        
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.7; }
            100% { opacity: 1; }
        }
    