
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang TC", "Microsoft JhengHei", sans-serif;
            line-height: 1.6;
            color: #1d1d1f;
            background: #ffffff;
        }

        .vet-cat-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Hero 區域 - Apple 簡約風格 */
        .vet-cat-hero {
            background: #ffffff;
            padding: 100px 0 80px;
            text-align: center;
        }

        .vet-cat-hero h1 {
            font-size: 56px;
            font-weight: 600;
            color: #1d1d1f;
            margin-bottom: 24px;
            line-height: 1.1;
            letter-spacing: -0.5px;
        }

        .vet-cat-hero-desc {
            font-size: 21px;
            color: #6e6e73;
            margin-bottom: 48px;
            max-width: 720px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.5;
            font-weight: 400;
        }

        /* 價格卡片 - 簡約風格 */
        .vet-cat-price-card {
            background: #f5f5f7;
            border-radius: 18px;
            padding: 48px;
            color: #1d1d1f;
            max-width: 480px;
            margin: 0 auto 48px;
            border: 1px solid #e5e5e7;
            transition: all 0.3s ease;
        }

        .vet-cat-price-card:hover {
            transform: translateY(-5px);
        }

        .vet-cat-price-tag {
            font-size: 18px;
            color: #6e6e73;
            margin-bottom: 10px;
        }

        .vet-cat-price-amount {
            font-size: 56px;
            font-weight: 700;
            color: #1d1d1f;
            margin-bottom: 15px;
        }

        .vet-cat-price-note {
            font-size: 16px;
            color: #6e6e73;
            margin-bottom: 25px;
        }

        .vet-cat-price-includes {
            text-align: left;
            border-top: 1px solid #d2d2d7;
            padding-top: 20px;
            list-style: none;
        }

        .vet-cat-price-includes li {
            margin-bottom: 10px;
            padding-left: 25px;
            position: relative;
            color: #1d1d1f;
            font-size: 15px;
        }

        .vet-cat-price-includes li:before {
            content: "✓";
            position: absolute;
            left: 0;
            font-weight: bold;
            color: #1d1d1f;
        }

        /* CTA 按鈕 */
        .vet-cat-cta-group {
            display: flex;
            gap: 15px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .vet-cat-cta-primary {
            display: inline-block;
            background: #0071e3;
            color: white;
            padding: 12px 22px;
            border-radius: 980px;
            text-decoration: none;
            font-size: 17px;
            font-weight: 400;
            transition: background 0.2s ease;
            box-shadow: none;
        }

        .vet-cat-cta-primary:hover {
            background: #0077ed;
            transform: none;
            box-shadow: none;
        }

        .vet-cat-cta-secondary {
            display: inline-block;
            background: transparent;
            color: #0071e3;
            padding: 12px 22px;
            border-radius: 980px;
            text-decoration: none;
            font-size: 17px;
            font-weight: 400;
            border: none;
            transition: all 0.2s ease;
        }

        .vet-cat-cta-secondary:hover {
            background: transparent;
            text-decoration: underline;
            transform: none;
        }

        /* WhatsApp 按鈕 - 綠色提高轉化率 */
        .vet-cat-cta-whatsapp {
            display: inline-block;
            background: #25d366;
            color: white;
            padding: 12px 22px;
            border-radius: 980px;
            text-decoration: none;
            font-size: 17px;
            font-weight: 400;
            transition: background 0.2s ease;
            box-shadow: none;
        }

        .vet-cat-cta-whatsapp:hover {
            background: #20ba5a;
            transform: none;
            box-shadow: none;
        }

        /* 區塊 */
        .vet-cat-section {
            padding: 80px 0;
        }

        .vet-cat-section-title {
            font-size: 40px;
            font-weight: 600;
            color: #1d1d1f;
            text-align: center;
            margin-bottom: 64px;
            letter-spacing: -0.5px;
        }

        /* 食物卡片網格 */
        .vet-cat-symptoms-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }

        .vet-cat-symptom-card {
            background: #fbfbfd;
            border-radius: 18px;
            padding: 40px;
            transition: all 0.3s ease;
            border: 1px solid #d2d2d7;
        }

        .vet-cat-symptom-card:hover {
            transform: translateY(-2px);
            border-color: #86868b;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
        }

        .vet-cat-symptom-card h3 {
            font-size: 24px;
            color: #1d1d1f;
            margin-bottom: 12px;
            font-weight: 600;
        }

        .vet-cat-symptom-card p {
            color: #6e6e73;
            margin-bottom: 20px;
            line-height: 1.6;
            font-size: 17px;
        }

        .vet-cat-symptom-card ul {
            list-style: none;
            padding: 0;
        }

        .vet-cat-symptom-card li {
            padding: 6px 0;
            padding-left: 20px;
            position: relative;
            color: #6e6e73;
            font-size: 15px;
        }

        .vet-cat-symptom-card li:before {
            content: "•";
            position: absolute;
            left: 0;
            color: #86868b;
            font-size: 16px;
        }

        /* 圖片 */
        .vet-cat-image {
            width: 100%;
            max-height: 400px;
            object-fit: cover;
            border-radius: 18px;
            margin: 40px 0;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .vet-cat-image:hover {
            transform: scale(1.02);
        }

        .vet-cat-image-caption {
            text-align: center;
            color: #6e6e73;
            font-size: 14px;
            margin-top: 15px;
        }

        /* 信息卡片 */
        .vet-cat-info-card {
            background: #fbfbfd;
            border-radius: 18px;
            padding: 40px;
            margin: 40px 0;
            border: 1px solid #d2d2d7;
        }

        .vet-cat-info-card h3 {
            font-size: 28px;
            color: #1d1d1f;
            margin-bottom: 20px;
            font-weight: 600;
        }

        .vet-cat-info-card p {
            color: #6e6e73;
            font-size: 17px;
            line-height: 1.6;
            margin-bottom: 15px;
        }

        .vet-cat-info-card ul {
            list-style: none;
            padding: 0;
        }

        .vet-cat-info-card li {
            padding: 8px 0;
            padding-left: 25px;
            position: relative;
            color: #6e6e73;
            font-size: 17px;
        }

        .vet-cat-info-card li:before {
            content: "•";
            position: absolute;
            left: 0;
            color: #86868b;
            font-size: 18px;
        }

        /* 警告卡片 */
        .vet-cat-warning-card {
            background: #fff8e1;
            border-radius: 18px;
            padding: 40px;
            margin: 40px 0;
            border: 1px solid #ffd54f;
        }

        .vet-cat-warning-card h3 {
            font-size: 28px;
            color: #1d1d1f;
            margin-bottom: 20px;
            font-weight: 600;
        }

        .vet-cat-warning-card p {
            color: #6e6e73;
            font-size: 17px;
            line-height: 1.6;
            margin-bottom: 15px;
        }

        /* FAQ 區塊 */
        .vet-cat-faq-item {
            background: #fbfbfd;
            border-radius: 18px;
            padding: 32px;
            margin-bottom: 20px;
            border: 1px solid #d2d2d7;
            transition: all 0.3s ease;
        }

        .vet-cat-faq-item:hover {
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
            transform: translateY(-2px);
        }

        .vet-cat-faq-question {
            font-size: 21px;
            font-weight: 600;
            color: #1d1d1f;
            margin-bottom: 16px;
        }

        .vet-cat-faq-answer {
            color: #6e6e73;
            line-height: 1.6;
            font-size: 17px;
        }

        .vet-cat-faq-answer ul {
            margin-top: 15px;
            padding-left: 20px;
        }

        .vet-cat-faq-answer li {
            margin-bottom: 8px;
        }

        .vet-cat-price-badge {
            display: inline-block;
            background: #f5f5f7;
            color: #1d1d1f;
            padding: 10px 24px;
            border-radius: 980px;
            font-size: 19px;
            font-weight: 600;
            margin: 15px 0;
            border: 1px solid #d2d2d7;
            box-shadow: none;
        }

        /* CTA Banner */
        .vet-cat-cta-banner {
            background: #f5f5f7;
            color: #1d1d1f;
            padding: 64px 40px;
            border-radius: 20px;
            text-align: center;
            margin: 80px 0;
            border: 1px solid #d2d2d7;
        }

        .vet-cat-cta-banner h3 {
            font-size: 32px;
            margin-bottom: 16px;
            font-weight: 600;
            color: #1d1d1f;
        }

        .vet-cat-cta-banner p {
            font-size: 19px;
            margin-bottom: 32px;
            color: #6e6e73;
        }

        /* 地址資訊 */
        .vet-cat-location {
            background: #fbfbfd;
            padding: 40px;
            border-radius: 18px;
            margin: 40px 0;
            border: 1px solid #d2d2d7;
        }

        .vet-cat-location h3 {
            color: #1d1d1f;
            font-size: 24px;
            margin-bottom: 24px;
            font-weight: 600;
        }

        .vet-cat-location p {
            color: #6e6e73;
            font-size: 17px;
            margin-bottom: 12px;
        }

        .vet-cat-location strong {
            color: #1d1d1f;
            font-weight: 600;
        }

        /* 權威引用 */
        .vet-cat-authority {
            background: #fbfbfd;
            border-radius: 18px;
            padding: 40px;
            margin: 60px 0;
            border: 1px solid #d2d2d7;
            text-align: center;
        }

        .vet-cat-authority h3 {
            font-size: 24px;
            font-weight: 600;
            color: #1d1d1f;
            margin-bottom: 24px;
        }

        .vet-cat-authority-text {
            font-size: 17px;
            color: #6e6e73;
            line-height: 1.6;
            max-width: 800px;
            margin: 0 auto 20px;
        }

        .vet-cat-authority-source {
            font-size: 15px;
            color: #86868b;
            font-style: italic;
        }

        /* 客戶評價卡片 */
        .vet-cat-reviews-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }

        .vet-cat-review-card {
            background: #fbfbfd;
            border-radius: 18px;
            padding: 32px;
            border: 1px solid #d2d2d7;
            transition: all 0.3s ease;
        }

        .vet-cat-review-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
        }

        .vet-cat-review-stars {
            color: #ffb800;
            font-size: 20px;
            margin-bottom: 15px;
        }

        .vet-cat-review-text {
            color: #6e6e73;
            font-size: 16px;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .vet-cat-review-author {
            color: #1d1d1f;
            font-weight: 600;
            font-size: 15px;
        }

        .vet-cat-review-pet {
            color: #86868b;
            font-size: 14px;
        }

        /* 響應式設計 */
        @media (max-width: 768px) {
            .vet-cat-hero h1 {
                font-size: 32px;
            }

            .vet-cat-hero-desc {
                font-size: 16px;
            }

            .vet-cat-price-amount {
                font-size: 42px;
            }

            .vet-cat-section-title {
                font-size: 28px;
            }

            .vet-cat-symptoms-grid,
            .vet-cat-reviews-grid {
                grid-template-columns: 1fr;
            }

            .vet-cat-cta-group {
                flex-direction: column;
            }

            .vet-cat-image {
                max-height: 250px;
            }
        }
    