
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        :root {
            --primary-color: #2c5f8d;
            --secondary-color: #4a90d9;
            --accent-color: #e74c3c;
            --success-color: #27ae60;
            --warning-color: #f39c12;
            --text-dark: #2c3e50;
            --text-light: #7f8c8d;
            --bg-light: #f8f9fa;
            --border-color: #e1e8ed;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft JhengHei", "PingFang TC", "Noto Sans TC", sans-serif;
            line-height: 1.8;
            color: var(--text-dark);
            background-color: #ffffff;
        }
        
        /* Emergency Banner */
        .emergency-banner {
            background: linear-gradient(135deg, var(--accent-color), #c0392b);
            color: white;
            padding: 15px 20px;
            text-align: center;
            font-weight: 600;
            box-shadow: 0 2px 8px rgba(0,0,0,0.15);
            position: sticky;
            top: 0;
            z-index: 1000;
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.95; }
        }
        
        .emergency-banner a {
            color: white;
            text-decoration: none;
            margin: 0 15px;
            font-size: 1.1em;
            border-bottom: 2px solid white;
            padding-bottom: 2px;
        }
        
        /* Header */
        header {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            padding: 60px 20px 40px;
            text-align: center;
        }
        
        h1 {
            font-size: 2.5em;
            margin-bottom: 20px;
            font-weight: 700;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
        }
        
        .subtitle {
            font-size: 1.2em;
            opacity: 0.95;
            max-width: 800px;
            margin: 0 auto;
        }
        
        /* Breadcrumb */
        .breadcrumb {
            background-color: var(--bg-light);
            padding: 15px 20px;
            font-size: 0.9em;
            border-bottom: 1px solid var(--border-color);
        }
        
        .breadcrumb a {
            color: var(--secondary-color);
            text-decoration: none;
        }
        
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        
        /* Container */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
        }
        
        /* Quick Info Box */
        .quick-info {
            background: linear-gradient(135deg, #fff5f5, #ffe8e8);
            border-left: 5px solid var(--accent-color);
            padding: 25px;
            margin: 30px 0;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.08);
        }
        
        .quick-info h2 {
            color: var(--accent-color);
            margin-bottom: 15px;
            font-size: 1.5em;
        }
        
        .quick-info ul {
            list-style: none;
            padding-left: 0;
        }
        
        .quick-info li {
            padding: 8px 0 8px 30px;
            position: relative;
        }
        
        .quick-info li:before {
            content: "⚠️";
            position: absolute;
            left: 0;
        }
        
        /* Content Sections */
        .content-section {
            margin: 40px 0;
            background: white;
            padding: 35px;
            border-radius: 12px;
            box-shadow: 0 2px 12px rgba(0,0,0,0.06);
        }
        
        h2 {
            color: var(--primary-color);
            font-size: 2em;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 3px solid var(--secondary-color);
        }
        
        h3 {
            color: var(--primary-color);
            font-size: 1.5em;
            margin: 25px 0 15px;
            display: flex;
            align-items: center;
        }
        
        h3:before {
            content: "▸";
            color: var(--secondary-color);
            margin-right: 10px;
            font-weight: bold;
        }
        
        p {
            margin-bottom: 15px;
            font-size: 1.05em;
        }
        
        /* Styled Lists */
        .styled-list {
            list-style: none;
            padding-left: 0;
        }
        
        .styled-list li {
            padding: 12px 0 12px 35px;
            position: relative;
            border-bottom: 1px solid var(--border-color);
        }
        
        .styled-list li:last-child {
            border-bottom: none;
        }
        
        .styled-list li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--success-color);
            font-weight: bold;
            font-size: 1.3em;
        }
        
        /* Warning Box */
        .warning-box {
            background: linear-gradient(135deg, #fff9e6, #ffeaa7);
            border-left: 5px solid var(--warning-color);
            padding: 20px;
            margin: 25px 0;
            border-radius: 8px;
        }
        
        .warning-box h3 {
            color: var(--warning-color);
            margin-top: 0;
        }
        
        .warning-box h3:before {
            content: "⚡";
        }
        
        /* Info Cards Grid */
        .info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin: 30px 0;
        }
        
        .info-card {
            background: white;
            border: 2px solid var(--border-color);
            border-radius: 12px;
            padding: 25px;
            transition: all 0.3s ease;
        }
        
        .info-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.12);
            border-color: var(--secondary-color);
        }
        
        .info-card h4 {
            color: var(--primary-color);
            font-size: 1.3em;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }
        
        .info-card h4:before {
            content: "🔍";
            margin-right: 10px;
            font-size: 1.2em;
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            padding: 50px 30px;
            border-radius: 15px;
            text-align: center;
            margin: 50px 0;
            box-shadow: 0 5px 20px rgba(0,0,0,0.15);
        }
        
        .cta-section h2 {
            color: white;
            border-bottom: none;
            font-size: 2.2em;
            margin-bottom: 20px;
        }
        
        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
            margin-top: 30px;
        }
        
        .cta-button {
            display: inline-block;
            padding: 18px 40px;
            background: white;
            color: var(--primary-color);
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1em;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }
        
        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 25px rgba(0,0,0,0.3);
        }
        
        .cta-button.whatsapp {
            background: #25D366;
            color: white;
        }
        
        .cta-button.phone {
            background: var(--accent-color);
            color: white;
        }
        
        /* Contact Info */
        .contact-info {
            background: var(--bg-light);
            padding: 30px;
            border-radius: 12px;
            margin: 30px 0;
        }
        
        .contact-info h3 {
            color: var(--primary-color);
            margin-top: 0;
        }
        
        .contact-details {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            font-size: 1.1em;
        }
        
        .contact-item:before {
            content: "📍";
            margin-right: 10px;
            font-size: 1.3em;
        }
        
        .contact-item.phone:before {
            content: "📞";
        }
        
        .contact-item.whatsapp:before {
            content: "💬";
        }
        
        .contact-item.time:before {
            content: "🕐";
        }
        
        /* Table */
        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            margin: 25px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
            border-radius: 8px;
            overflow: hidden;
        }
        
        .comparison-table th {
            background: var(--primary-color);
            color: white;
            padding: 15px;
            text-align: left;
            font-weight: 600;
        }
        
        .comparison-table td {
            padding: 15px;
            border-bottom: 1px solid var(--border-color);
        }
        
        .comparison-table tr:hover {
            background-color: var(--bg-light);
        }
        
        /* FAQ Section */
        .faq-item {
            background: white;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            margin-bottom: 15px;
            overflow: hidden;
        }
        
        .faq-question {
            background: var(--bg-light);
            padding: 20px;
            font-weight: 600;
            color: var(--primary-color);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .faq-question:after {
            content: "▼";
            font-size: 0.8em;
        }
        
        .faq-answer {
            padding: 20px;
            display: none;
        }
        
        .faq-item.active .faq-answer {
            display: block;
        }
        
        /* Footer */
        footer {
            background: var(--text-dark);
            color: white;
            padding: 40px 20px;
            text-align: center;
            margin-top: 60px;
        }
        
        footer a {
            color: var(--secondary-color);
            text-decoration: none;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            h1 {
                font-size: 1.8em;
            }
            
            .subtitle {
                font-size: 1em;
            }
            
            .content-section {
                padding: 20px;
            }
            
            .cta-buttons {
                flex-direction: column;
            }
            
            .cta-button {
                width: 100%;
            }
            
            .info-grid {
                grid-template-columns: 1fr;
            }
            
            .comparison-table {
                font-size: 0.9em;
            }
            
            .comparison-table th,
            .comparison-table td {
                padding: 10px 8px;
            }
        }
        
        @media print {
            .emergency-banner,
            .cta-section,
            .breadcrumb {
                display: none;
            }
        }
    