
        :root {
            --primary-blue: #2563eb;
            --light-blue: #dbeafe;
            --dark-blue: #1e40af;
            --white: #ffffff;
            --light-gray: #f8fafc;
            --text-gray: #374151;
            --border-gray: #e5e7eb;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Noto Sans TC', sans-serif;
            line-height: 1.7;
            color: var(--text-gray);
            background-color: var(--white);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .header {
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
            color: white;
            padding: 60px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 300"><path fill="rgba(255,255,255,0.1)" d="M0,100 C150,200 350,0 500,100 C650,200 850,0 1000,100 L1000,300 L0,300 Z"/></svg>');
            background-size: cover;
        }

        .header-content {
            position: relative;
            z-index: 2;
        }

        h1 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .subtitle {
            font-size: 1.2rem;
            opacity: 0.9;
            margin-bottom: 30px;
        }

        .clinic-info {
            background: rgba(255,255,255,0.1);
            padding: 20px;
            border-radius: 10px;
            display: inline-block;
            backdrop-filter: blur(10px);
        }

        .main-content {
            padding: 60px 0;
            background-color: var(--light-gray);
        }

        .content-wrapper {
            background: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            margin-bottom: 40px;
        }

        h2 {
            color: var(--primary-blue);
            font-size: 2rem;
            margin: 40px 0 20px 0;
            padding-bottom: 10px;
            border-bottom: 3px solid var(--light-blue);
            position: relative;
        }

        h3 {
            color: var(--dark-blue);
            font-size: 1.5rem;
            margin: 30px 0 15px 0;
        }

        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            line-height: 1.8;
        }

        .highlight-box {
            background: var(--light-blue);
            padding: 25px;
            border-radius: 10px;
            margin: 30px 0;
            border-left: 5px solid var(--primary-blue);
        }

        .warning-box {
            background: #fef2f2;
            border: 2px solid #fca5a5;
            padding: 20px;
            border-radius: 10px;
            margin: 20px 0;
        }

        .warning-box h4 {
            color: #dc2626;
            margin-bottom: 10px;
        }

        .symptoms-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }

        .symptom-card {
            background: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            border-left: 4px solid var(--primary-blue);
        }

        .faq-section {
            margin-top: 50px;
        }

        .faq-item {
            background: white;
            border: 1px solid var(--border-gray);
            border-radius: 10px;
            margin-bottom: 10px;
            overflow: hidden;
        }

        .faq-question {
            background: var(--light-blue);
            padding: 20px;
            cursor: pointer;
            font-weight: 600;
            font-size: 1.1rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            background: var(--primary-blue);
            color: white;
        }

        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-answer.active {
            padding: 20px;
            max-height: 500px;
        }

        .contact-buttons {
            position: fixed;
            right: 20px;
            bottom: 20px;
            z-index: 1000;
        }

        .contact-btn {
            display: block;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            color: white;
            text-decoration: none;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            margin-bottom: 10px;
            transition: transform 0.3s ease;
        }

        .contact-btn:hover {
            transform: scale(1.1);
        }

        .whatsapp-btn {
            background: #25d366;
        }

        .phone-btn {
            background: var(--primary-blue);
        }

        @media (max-width: 768px) {
            h1 {
                font-size: 2rem;
            }

            .content-wrapper {
                padding: 20px;
            }

            .symptoms-grid {
                grid-template-columns: 1fr;
            }

            .contact-buttons {
                right: 10px;
                bottom: 10px;
            }

            .contact-btn {
                width: 50px;
                height: 50px;
                font-size: 20px;
            }
        }

        .table-responsive {
            overflow-x: auto;
            margin: 20px 0;
        }

        table {
            width: 100%;
            border-collapse: collapse;
            background: white;
        }

        th, td {
            padding: 12px;
            text-align: left;
            border-bottom: 1px solid var(--border-gray);
        }

        th {
            background: var(--primary-blue);
            color: white;
            font-weight: 600;
        }

        .emergency-list {
            background: #fef2f2;
            padding: 20px;
            border-radius: 10px;
            margin: 20px 0;
        }

        .emergency-list h4 {
            color: #dc2626;
            margin-bottom: 15px;
        }

        .emergency-list ul {
            list-style: none;
        }

        .emergency-list li {
            padding: 8px 0;
            border-bottom: 1px solid #fca5a5;
        }

        .emergency-list li:before {
            content: "⚠️";
            margin-right: 10px;
        }
    