
        :root {
            --primary-blue: #2563eb;
            --light-blue: #dbeafe;
            --dark-blue: #1e40af;
            --white: #ffffff;
            --light-gray: #f8fafc;
            --text-gray: #374151;
            --border-gray: #e5e7eb;
            --success-green: #059669;
            --warning-yellow: #d97706;
            --danger-red: #dc2626;
            --soft-pink: #fdf2f8;
            --maternal-purple: #8b5cf6;
        }

        * {
            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(--maternal-purple) 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;
        }

        h4 {
            color: var(--maternal-purple);
            font-size: 1.2rem;
            margin: 20px 0 10px 0;
        }

        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            line-height: 1.8;
        }

        .maternal-highlight {
            background: linear-gradient(135deg, var(--soft-pink) 0%, #fce7f3 100%);
            padding: 25px;
            border-radius: 15px;
            margin: 30px 0;
            border-left: 5px solid var(--maternal-purple);
            position: relative;
        }

        .maternal-highlight::before {
            content: "👩‍⚕️";
            font-size: 2rem;
            position: absolute;
            top: 15px;
            right: 20px;
        }

        .critical-care {
            background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
            border: 2px solid var(--danger-red);
            padding: 25px;
            border-radius: 15px;
            margin: 30px 0;
            position: relative;
        }

        .critical-care::before {
            content: "🚨";
            font-size: 2rem;
            position: absolute;
            top: 15px;
            right: 20px;
        }

        .care-timeline {
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
            padding: 30px;
            border-radius: 15px;
            margin: 30px 0;
            border: 2px solid var(--light-blue);
        }

        .timeline-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            margin: 25px 0;
        }

        .timeline-card {
            background: white;
            padding: 20px;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            border-left: 4px solid var(--primary-blue);
            position: relative;
            transition: transform 0.3s ease;
        }

        .timeline-card:hover {
            transform: translateY(-3px);
        }

        .timeline-period {
            background: var(--primary-blue);
            color: white;
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
            display: inline-block;
            margin-bottom: 15px;
        }

        .care-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin: 30px 0;
        }

        .care-card {
            background: white;
            padding: 25px;
            border-radius: 15px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            border-top: 5px solid var(--maternal-purple);
            transition: transform 0.3s ease;
        }

        .care-card:hover {
            transform: translateY(-5px);
        }

        .care-icon {
            width: 60px;
            height: 60px;
            background: var(--light-blue);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 15px;
            font-size: 1.5rem;
            color: var(--primary-blue);
        }

        .warning-signs {
            background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
            padding: 25px;
            border-radius: 15px;
            margin: 25px 0;
            border: 2px solid var(--warning-yellow);
        }

        .signs-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 15px;
            margin: 20px 0;
        }

        .sign-item {
            background: white;
            padding: 15px;
            border-radius: 10px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .sign-item .icon {
            color: var(--danger-red);
            font-size: 1.2rem;
        }

        .nutrition-table {
            overflow-x: auto;
            margin: 20px 0;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            border-radius: 15px;
        }

        table {
            width: 100%;
            border-collapse: collapse;
            background: white;
            border-radius: 15px;
            overflow: hidden;
        }

        th, td {
            padding: 15px;
            text-align: left;
            border-bottom: 1px solid var(--border-gray);
        }

        th {
            background: var(--maternal-purple);
            color: white;
            font-weight: 600;
            font-size: 1.1rem;
        }

        tbody tr:hover {
            background-color: var(--soft-pink);
        }

        .dosage-highlight {
            background: var(--success-green);
            color: white;
            padding: 4px 10px;
            border-radius: 15px;
            font-size: 0.9rem;
            display: inline-block;
        }

        .checklist {
            background: white;
            padding: 25px;
            border-radius: 15px;
            margin: 25px 0;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }

        .checklist-item {
            display: flex;
            align-items: flex-start;
            padding: 10px 0;
            border-bottom: 1px solid var(--border-gray);
            gap: 15px;
        }

        .checklist-item:last-child {
            border-bottom: none;
        }

        .checkbox {
            width: 20px;
            height: 20px;
            border: 2px solid var(--primary-blue);
            border-radius: 4px;
            margin-top: 2px;
            flex-shrink: 0;
        }

        .emergency-contact {
            background: linear-gradient(135deg, var(--danger-red) 0%, #b91c1c 100%);
            color: white;
            padding: 30px;
            border-radius: 15px;
            margin: 30px 0;
            text-align: center;
        }

        .emergency-contact h3 {
            color: white;
            margin-bottom: 15px;
        }

        .emergency-number {
            font-size: 2rem;
            font-weight: bold;
            margin: 10px 0;
        }

        .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(--soft-pink);
            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(--maternal-purple);
            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(--danger-red);
        }

        @media (max-width: 768px) {
            h1 {
                font-size: 2rem;
            }

            .content-wrapper {
                padding: 20px;
            }

            .care-grid {
                grid-template-columns: 1fr;
            }

            .timeline-grid {
                grid-template-columns: 1fr;
            }

            .signs-list {
                grid-template-columns: 1fr;
            }

            .contact-buttons {
                right: 10px;
                bottom: 10px;
            }

            .contact-btn {
                width: 50px;
                height: 50px;
                font-size: 20px;
            }

            th, td {
                padding: 10px;
                font-size: 0.9rem;
            }

            .emergency-number {
                font-size: 1.5rem;
            }
        }

        .recovery-stages {
            background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
            padding: 25px;
            border-radius: 15px;
            margin: 25px 0;
            border: 2px solid var(--success-green);
        }

        .stage-indicator {
            display: inline-block;
            background: var(--success-green);
            color: white;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 10px;
        }
    