
    /* 寵物健康證明服務頁面專用樣式 */
    .pet-health-cert-content {
        font-family: -apple-system, BlinkMacSystemFont, "SF Pro TC", "SF Pro Display", "Helvetica Neue", "PingFang TC", "Microsoft JhengHei", sans-serif;
        color: #1e293b;
        line-height: 1.7;
    }

    .pet-health-cert-hero {
        text-align: center;
        padding: 80px 24px;
        background: linear-gradient(180deg, #dbeafe 0%, #ffffff 100%);
    }

    .pet-health-cert-hero h1 {
        font-size: clamp(38px, 5vw, 54px);
        font-weight: 700;
        background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 24px;
        line-height: 1.2;
    }

    .pet-health-cert-hero-desc {
        font-size: 19px;
        color: #64748b;
        max-width: 800px;
        margin: 0 auto 32px;
        line-height: 1.8;
    }

    .pet-health-cert-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: white;
        border: 2px solid #3b82f6;
        border-radius: 999px;
        padding: 12px 24px;
        font-size: 16px;
        font-weight: 600;
        color: #1e40af;
        margin-bottom: 32px;
    }

    .pet-health-cert-cta {
        display: inline-flex;
        align-items: center;
        gap: 16px;
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 24px;
    }

    .pet-health-cert-btn-primary {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 14px 28px;
        background: #3b82f6;
        color: white;
        text-decoration: none;
        border-radius: 999px;
        font-weight: 600;
        font-size: 17px;
        transition: all 0.3s ease;
    }

    .pet-health-cert-btn-primary:hover {
        background: #1e40af;
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
    }

    .pet-health-cert-btn-secondary {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 14px 28px;
        background: transparent;
        color: #3b82f6;
        text-decoration: none;
        border-radius: 999px;
        font-weight: 600;
        font-size: 17px;
        border: 2px solid #3b82f6;
        transition: all 0.3s ease;
    }

    .pet-health-cert-btn-secondary:hover {
        background: #3b82f6;
        color: white;
        transform: translateY(-2px);
    }

    .pet-health-cert-section {
        padding: 60px 24px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .pet-health-cert-section-title {
        text-align: center;
        font-size: clamp(32px, 4vw, 44px);
        font-weight: 700;
        margin-bottom: 16px;
        color: #1e293b;
    }

    .pet-health-cert-section-subtitle {
        text-align: center;
        font-size: 17px;
        color: #64748b;
        max-width: 700px;
        margin: 0 auto 48px;
    }

    /* 介紹區塊 */
    .pet-health-cert-intro {
        max-width: 900px;
        margin: 0 auto 48px;
        font-size: 17px;
        line-height: 1.9;
        color: #1e293b;
    }

    .pet-health-cert-intro p {
        margin-bottom: 20px;
    }

    .pet-health-cert-intro strong {
        color: #3b82f6;
        font-weight: 600;
    }

    /* 場景卡片 */
    .pet-health-cert-scenarios {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 24px;
        margin-bottom: 48px;
    }

    .pet-health-cert-scenario-card {
        background: white;
        padding: 32px;
        border-radius: 18px;
        text-align: center;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
        border: 2px solid rgba(59, 130, 246, 0.1);
        transition: all 0.3s ease;
    }

    .pet-health-cert-scenario-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 30px rgba(59, 130, 246, 0.2);
        border-color: #3b82f6;
    }

    .pet-health-cert-scenario-icon {
        width: 70px;
        height: 70px;
        background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
        border-radius: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 36px;
        margin: 0 auto 20px;
    }

    .pet-health-cert-scenario-card h4 {
        font-size: 20px;
        font-weight: 600;
        color: #1e293b;
        margin-bottom: 10px;
    }

    .pet-health-cert-scenario-card p {
        font-size: 15px;
        color: #64748b;
        margin: 0;
    }

    /* 流程步驟 */
    .pet-health-cert-process {
        max-width: 1000px;
        margin: 0 auto 48px;
    }

    .pet-health-cert-process-step {
        background: white;
        padding: 28px;
        border-radius: 18px;
        margin-bottom: 20px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
        border: 1px solid rgba(59, 130, 246, 0.1);
        transition: all 0.3s ease;
        position: relative;
        padding-left: 90px;
    }

    .pet-health-cert-process-step:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 30px rgba(59, 130, 246, 0.15);
    }

    .pet-health-cert-process-number {
        position: absolute;
        left: 28px;
        top: 28px;
        width: 48px;
        height: 48px;
        background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 22px;
    }

    .pet-health-cert-process-step h4 {
        font-size: 22px;
        font-weight: 600;
        color: #1e293b;
        margin-bottom: 10px;
    }

    .pet-health-cert-process-step p {
        font-size: 16px;
        color: #64748b;
        margin: 0;
        line-height: 1.7;
    }

    /* 國家要求卡片 */
    .pet-health-cert-countries {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 24px;
        margin-bottom: 48px;
    }

    .pet-health-cert-country-card {
        background: white;
        padding: 32px;
        border-radius: 18px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
        border: 2px solid rgba(59, 130, 246, 0.1);
        transition: all 0.3s ease;
    }

    .pet-health-cert-country-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 40px rgba(59, 130, 246, 0.2);
        border-color: #3b82f6;
    }

    .pet-health-cert-country-flag {
        font-size: 48px;
        margin-bottom: 16px;
        display: block;
    }

    .pet-health-cert-country-card h4 {
        font-size: 22px;
        font-weight: 600;
        color: #1e293b;
        margin-bottom: 16px;
    }

    .pet-health-cert-country-info {
        font-size: 15px;
        color: #64748b;
        line-height: 1.8;
        margin-bottom: 8px;
    }

    .pet-health-cert-country-info strong {
        color: #3b82f6;
        font-weight: 600;
    }

    /* 服務卡片 */
    .pet-health-cert-services {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 24px;
        margin-bottom: 48px;
    }

    .pet-health-cert-service-card {
        background: white;
        padding: 32px;
        border-radius: 18px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
        border: 2px solid rgba(59, 130, 246, 0.1);
        transition: all 0.3s ease;
    }

    .pet-health-cert-service-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 40px rgba(59, 130, 246, 0.2);
        border-color: #3b82f6;
    }

    .pet-health-cert-service-icon {
        font-size: 48px;
        margin-bottom: 16px;
    }

    .pet-health-cert-service-card h4 {
        font-size: 22px;
        font-weight: 600;
        color: #1e293b;
        margin-bottom: 12px;
    }

    .pet-health-cert-service-card p {
        font-size: 15px;
        color: #64748b;
        margin-bottom: 16px;
        line-height: 1.7;
    }

    .pet-health-cert-service-price {
        font-size: 24px;
        font-weight: 700;
        color: #10b981;
        margin-top: 16px;
    }

    .pet-health-cert-service-note {
        font-size: 13px;
        color: #94a3b8;
        margin-top: 8px;
        font-style: italic;
    }

    /* 時間表 */
    .pet-health-cert-timeline {
        max-width: 900px;
        margin: 0 auto 48px;
        background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
        padding: 40px;
        border-radius: 20px;
    }

    .pet-health-cert-timeline-item {
        background: white;
        padding: 24px;
        border-radius: 16px;
        margin-bottom: 16px;
        border-left: 4px solid #3b82f6;
        transition: all 0.3s ease;
    }

    .pet-health-cert-timeline-item:last-child {
        margin-bottom: 0;
    }

    .pet-health-cert-timeline-item:hover {
        transform: translateX(5px);
        box-shadow: 0 4px 20px rgba(59, 130, 246, 0.15);
    }

    .pet-health-cert-timeline-time {
        display: inline-block;
        background: #3b82f6;
        color: white;
        padding: 6px 16px;
        border-radius: 999px;
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 12px;
    }

    .pet-health-cert-timeline-item h4 {
        font-size: 20px;
        font-weight: 600;
        color: #1e293b;
        margin-bottom: 8px;
    }

    .pet-health-cert-timeline-item p {
        font-size: 15px;
        color: #64748b;
        margin: 0;
        line-height: 1.7;
    }

    /* 圖片容器 */
    .pet-health-cert-image-container {
        width: 100%;
        max-width: 900px;
        margin: 40px auto;
        padding: 0 24px;
        overflow: hidden;
        border-radius: 18px;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    }

    .pet-health-cert-image-container img {
        width: 100%;
        height: auto;
        max-height: 400px;
        object-fit: cover;
        display: block;
        transition: transform 0.3s ease;
    }

    .pet-health-cert-image-container:hover img {
        transform: scale(1.02);
    }

    .pet-health-cert-image-caption {
        text-align: center;
        color: #64748b;
        font-size: 15px;
        margin-top: 12px;
        font-style: italic;
    }

    /* 優勢區塊 */
    .pet-health-cert-advantage {
        background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
        color: white;
        padding: 60px 32px;
        border-radius: 20px;
        text-align: center;
        margin: 60px auto;
        max-width: 900px;
    }

    .pet-health-cert-advantage h3 {
        font-size: clamp(28px, 4vw, 36px);
        font-weight: 700;
        margin-bottom: 24px;
        color: white;
    }

    .pet-health-cert-advantage p {
        font-size: 18px;
        line-height: 1.8;
        margin-bottom: 16px;
        opacity: 0.95;
    }

    /* FAQ 區塊 */
    .pet-health-cert-faq {
        background: white;
        padding: 60px 24px;
    }

    .pet-health-cert-faq-container {
        max-width: 900px;
        margin: 0 auto;
    }

    .pet-health-cert-faq-item {
        background: #f0f9ff;
        padding: 24px;
        border-radius: 18px;
        margin-bottom: 16px;
        border: 1px solid rgba(59, 130, 246, 0.1);
        transition: all 0.3s ease;
    }

    .pet-health-cert-faq-item:hover {
        box-shadow: 0 4px 20px rgba(59, 130, 246, 0.1);
        transform: translateY(-2px);
    }

    .pet-health-cert-faq-question {
        color: #3b82f6;
        font-size: 19px;
        font-weight: 600;
        margin-bottom: 12px;
    }

    .pet-health-cert-faq-answer {
        color: #1e293b;
        font-size: 16px;
        line-height: 1.7;
        margin: 0;
    }

    .pet-health-cert-faq-answer strong {
        color: #3b82f6;
        font-weight: 600;
    }

    /* CTA Banner */
    .pet-health-cert-cta-banner {
        background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
        color: white;
        padding: 48px 32px;
        border-radius: 20px;
        text-align: center;
        margin: 60px auto;
        max-width: 900px;
        box-shadow: 0 10px 40px rgba(59, 130, 246, 0.3);
    }

    .pet-health-cert-cta-banner h3 {
        font-size: clamp(28px, 4vw, 36px);
        font-weight: 700;
        margin-bottom: 16px;
        color: white;
    }

    .pet-health-cert-cta-banner p {
        font-size: 17px;
        margin-bottom: 28px;
        opacity: 0.95;
    }

    /* 響應式設計 */
    @media (max-width: 768px) {
        .pet-health-cert-hero {
            padding: 60px 16px;
        }

        .pet-health-cert-section {
            padding: 40px 16px;
        }

        .pet-health-cert-scenarios,
        .pet-health-cert-countries,
        .pet-health-cert-services {
            grid-template-columns: 1fr;
        }

        .pet-health-cert-process-step {
            padding-left: 24px;
            padding-top: 80px;
        }

        .pet-health-cert-process-number {
            left: 50%;
            transform: translateX(-50%);
            top: 20px;
        }

        .pet-health-cert-timeline {
            padding: 24px 20px;
        }

        .pet-health-cert-image-container {
            padding: 0 16px;
            margin: 30px auto;
        }

        .pet-health-cert-image-container img {
            max-height: 250px;
        }

        .pet-health-cert-cta {
            flex-direction: column;
            width: 100%;
        }

        .pet-health-cert-btn-primary,
        .pet-health-cert-btn-secondary {
            width: 100%;
            justify-content: center;
        }

        .pet-health-cert-cta-banner,
        .pet-health-cert-advantage {
            padding: 36px 20px;
        }
    }
