
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Microsoft JhengHei', Arial, sans-serif;
            line-height: 1.6;
            color: #333;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            min-height: 100vh;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: white;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .header {
            background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
            color: white;
            padding: 60px 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="pawprint" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="5" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="5" cy="12" r="1.5" fill="rgba(255,255,255,0.08)"/><circle cx="15" cy="12" r="1.5" fill="rgba(255,255,255,0.08)"/><circle cx="8" cy="16" r="1" fill="rgba(255,255,255,0.06)"/><circle cx="12" cy="16" r="1" fill="rgba(255,255,255,0.06)"/></pattern></defs><rect width="100" height="100" fill="url(%23pawprint)"/></svg>') repeat;
            opacity: 0.3;
        }
        
        .header h1 {
            font-size: 3em;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            position: relative;
            z-index: 1;
        }
        
        .header .subtitle {
            font-size: 1.3em;
            opacity: 0.9;
            position: relative;
            z-index: 1;
        }
        
        .content {
            padding: 60px 40px;
        }
        
        .section {
            margin-bottom: 50px;
            padding: 30px;
            background: #f8f9ff;
            border-radius: 15px;
            border-left: 5px solid #4a90e2;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }
        
        .section h2 {
            color: #2c5282;
            font-size: 2.2em;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 3px solid #4a90e2;
            position: relative;
        }
        
        .section h2::after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, #4a90e2, #667eea);
        }
        
        .section h3 {
            color: #2d3748;
            font-size: 1.5em;
            margin: 25px 0 15px 0;
            padding-left: 20px;
            border-left: 4px solid #4a90e2;
        }
        
        .section p {
            margin-bottom: 20px;
            font-size: 1.1em;
            line-height: 1.8;
        }
        
        .highlight {
            background: linear-gradient(120deg, #fff3cd 0%, #ffeaa7 100%);
            padding: 25px;
            border-radius: 10px;
            border-left: 5px solid #f39c12;
            margin: 30px 0;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
        }
        
        .emergency-alert {
            background: linear-gradient(120deg, #fee 0%, #fdd 100%);
            padding: 25px;
            border-radius: 10px;
            border-left: 5px solid #e74c3c;
            margin: 30px 0;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
        }
        
        .emergency-alert h4 {
            color: #c0392b;
            font-size: 1.3em;
            margin-bottom: 15px;
            font-weight: bold;
        }
        
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        th, td {
            padding: 15px;
            text-align: left;
            border-bottom: 1px solid #e2e8f0;
        }
        
        th {
            background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
            color: white;
            font-weight: bold;
            font-size: 1.1em;
        }
        
        tr:hover {
            background-color: #f7fafc;
        }
        
        .faq-container {
            margin: 50px 0;
        }
        
        .faq-item {
            background: white;
            margin-bottom: 15px;
            border-radius: 10px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            overflow: hidden;
        }
        
        .faq-question {
            background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
            color: white;
            padding: 20px;
            cursor: pointer;
            user-select: none;
            font-weight: bold;
            font-size: 1.1em;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .faq-question:hover {
            background: linear-gradient(135deg, #357abd 0%, #2c5282 100%);
        }
        
        .faq-question::after {
            content: '+';
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 1.5em;
            transition: transform 0.3s ease;
        }
        
        .faq-question.active::after {
            transform: translateY(-50%) rotate(45deg);
        }
        
        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            background: #f8f9ff;
        }
        
        .faq-answer.active {
            padding: 20px;
            max-height: 500px;
        }
        
        .contact-section {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 50px 40px;
            text-align: center;
            margin-top: 50px;
        }
        
        .contact-section h2 {
            color: white;
            margin-bottom: 30px;
            border-bottom: 3px solid white;
            display: inline-block;
            padding-bottom: 10px;
        }
        
        .contact-info {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            gap: 30px;
            margin: 40px 0;
        }
        
        .contact-item {
            background: rgba(255,255,255,0.1);
            padding: 25px;
            border-radius: 15px;
            backdrop-filter: blur(10px);
            flex: 1;
            min-width: 250px;
            transition: transform 0.3s ease;
        }
        
        .contact-item:hover {
            transform: translateY(-5px);
        }
        
        .contact-item h4 {
            font-size: 1.3em;
            margin-bottom: 15px;
            color: #fff;
        }
        
        .whatsapp-btn {
            display: inline-block;
            background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
            color: white;
            padding: 20px 40px;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            font-size: 1.2em;
            margin-top: 30px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        
        .whatsapp-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.3);
            text-decoration: none;
            color: white;
        }
        
        @media (max-width: 768px) {
            .header {
                padding: 40px 20px;
            }
            
            .header h1 {
                font-size: 2.2em;
            }
            
            .content {
                padding: 40px 20px;
            }
            
            .section {
                padding: 20px;
                margin-bottom: 30px;
            }
            
            .section h2 {
                font-size: 1.8em;
            }
            
            .contact-info {
                flex-direction: column;
                align-items: center;
            }
            
            .contact-section {
                padding: 40px 20px;
            }
        }
        
        ul, ol {
            margin: 20px 0;
            padding-left: 30px;
        }
        
        li {
            margin-bottom: 10px;
            line-height: 1.6;
        }
        
        .warning {
            background: linear-gradient(120deg, #fff5f5 0%, #fed7d7 100%);
            border-left: 5px solid #f56565;
            padding: 20px;
            border-radius: 8px;
            margin: 20px 0;
        }
        
        .tips {
            background: linear-gradient(120deg, #f0fff4 0%, #c6f6d5 100%);
            border-left: 5px solid #48bb78;
            padding: 20px;
            border-radius: 8px;
            margin: 20px 0;
        }
    