
    /* 獸醫服務頁面專用樣式 */
    .vet-services-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;
    }

    .vet-hero {
        text-align: center;
        padding: 80px 24px;
        background: linear-gradient(180deg, #f0f9ff 0%, #ffffff 100%);
    }

    .vet-hero h1 {
        font-size: clamp(40px, 5vw, 56px);
        font-weight: 700;
        background: linear-gradient(135deg, #1e293b 0%, #3b82f6 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 24px;
        line-height: 1.2;
    }

    .vet-hero-desc {
        font-size: 19px;
        color: #64748b;
        max-width: 800px;
        margin: 0 auto 32px;
    }

    .vet-cta {
        display: inline-flex;
        align-items: center;
        gap: 16px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .vet-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;
    }

    .vet-btn-primary:hover {
        background: #1e40af;
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
    }

    .vet-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;
    }

    .vet-btn-secondary:hover {
        background: #3b82f6;
        color: white;
        transform: translateY(-2px);
    }

    .vet-emergency-section {
        background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
        color: white;
        padding: 60px 24px;
        text-align: center;
        margin: 60px 0;
    }

    .vet-emergency-section h2 {
        font-size: clamp(32px, 4vw, 44px);
        font-weight: 700;
        margin-bottom: 16px;
        color: white;
    }

    .vet-emergency-section p {
        font-size: 19px;
        margin-bottom: 32px;
        color: rgba(255, 255, 255, 0.95);
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

    .vet-section {
        padding: 60px 24px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .vet-section-title {
        text-align: center;
        font-size: clamp(32px, 4vw, 44px);
        font-weight: 700;
        margin-bottom: 16px;
        color: #1e293b;
    }

    .vet-section-subtitle {
        text-align: center;
        font-size: 17px;
        color: #64748b;
        max-width: 700px;
        margin: 0 auto 48px;
    }

    .vet-services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 24px;
        margin-bottom: 48px;
    }

    .vet-service-card {
        background: white;
        padding: 32px;
        border-radius: 18px;
        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;
    }

    .vet-service-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 40px rgba(59, 130, 246, 0.15);
    }

    .vet-service-icon {
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 40px;
        margin-bottom: 20px;
    }

    .vet-service-card h3 {
        font-size: 24px;
        font-weight: 600;
        color: #1e293b;
        margin-bottom: 12px;
    }

    .vet-service-card p {
        font-size: 16px;
        color: #64748b;
        margin-bottom: 16px;
        line-height: 1.6;
    }

    .vet-service-features {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .vet-service-features li {
        padding: 8px 0;
        color: #64748b;
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 15px;
    }

    .vet-service-features li:before {
        content: "✓";
        color: #3b82f6;
        font-weight: 700;
        font-size: 18px;
    }

    .vet-cta-banner {
        background: #f0f9ff;
        border: 2px solid #3b82f6;
        border-radius: 18px;
        padding: 32px;
        text-align: center;
        margin: 48px 0;
    }

    .vet-cta-banner h3 {
        font-size: 24px;
        font-weight: 600;
        color: #1e293b;
        margin-bottom: 16px;
    }

    .vet-cta-banner p {
        font-size: 17px;
        color: #64748b;
        margin-bottom: 24px;
    }

    .vet-faq-section {
        background: #f0f9ff;
        padding: 60px 24px;
    }

    .vet-faq-container {
        max-width: 900px;
        margin: 0 auto;
    }

    .vet-faq-item {
        background: white;
        padding: 24px;
        border-radius: 18px;
        margin-bottom: 16px;
        border: 1px solid rgba(59, 130, 246, 0.1);
        transition: all 0.3s ease;
    }

    .vet-faq-item:hover {
        box-shadow: 0 4px 20px rgba(59, 130, 246, 0.1);
        transform: translateY(-2px);
    }

    .vet-faq-question {
        color: #3b82f6;
        font-size: 19px;
        font-weight: 600;
        margin-bottom: 12px;
    }

    .vet-faq-answer {
        color: #1e293b;
        font-size: 16px;
        line-height: 1.7;
        margin: 0;
    }

    .vet-final-cta {
        background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
        color: white;
        padding: 60px 24px;
        text-align: center;
        border-radius: 24px;
        margin: 60px auto;
        max-width: 1000px;
    }

    .vet-final-cta h2 {
        font-size: clamp(32px, 4vw, 44px);
        font-weight: 700;
        margin-bottom: 16px;
        color: white;
    }

    .vet-final-cta p {
        font-size: 19px;
        margin-bottom: 32px;
        color: rgba(255, 255, 255, 0.95);
    }

    .vet-contact-info {
        display: flex;
        justify-content: center;
        gap: 32px;
        flex-wrap: wrap;
        margin-top: 32px;
    }

    .vet-contact-item {
        font-size: 17px;
        color: rgba(255, 255, 255, 0.9);
    }

    .vet-contact-item strong {
        color: white;
        font-weight: 600;
    }

    .vet-image-container {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        overflow: hidden;
        border-radius: 18px;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    }

    .vet-image-container img {
        width: 100%;
        height: auto;
        display: block;
        transition: transform 0.3s ease;
    }

    .vet-image-container:hover img {
        transform: scale(1.02);
    }

    .vet-hero-image {
        margin: 40px auto;
        max-width: 900px;
        padding: 0 24px;
    }

    .vet-hero-image .vet-image-container {
        max-height: 400px;
        overflow: hidden;
    }

    .vet-inline-image {
        margin: 48px auto;
        max-width: 700px;
        padding: 0 24px;
    }

    .vet-inline-image .vet-image-container {
        max-height: 350px;
        overflow: hidden;
    }

    .vet-image-caption {
        text-align: center;
        color: #64748b;
        font-size: 15px;
        margin-top: 12px;
        font-style: italic;
    }

    @media (max-width: 768px) {
        .vet-services-grid {
            grid-template-columns: 1fr;
        }

        .vet-hero {
            padding: 60px 16px;
        }

        .vet-section {
            padding: 40px 16px;
        }

        .vet-cta {
            flex-direction: column;
            width: 100%;
        }

        .vet-btn-primary,
        .vet-btn-secondary {
            width: 100%;
            justify-content: center;
        }

        .vet-hero-image {
            padding: 0 16px;
            margin: 30px auto;
        }

        .vet-hero-image .vet-image-container {
            max-height: 250px;
        }

        .vet-inline-image {
            padding: 0 16px;
            margin: 32px auto;
        }

        .vet-inline-image .vet-image-container {
            max-height: 220px;
        }

        .vet-image-caption {
            font-size: 13px;
            padding: 0 8px;
        }
    }
