
    /* 獸醫外科手術服務頁面專用樣式 */
    .vet-surgery-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-surgery-hero {
        text-align: center;
        padding: 80px 24px;
        background: linear-gradient(180deg, #f0f9ff 0%, #ffffff 100%);
    }

    .vet-surgery-hero h1 {
        font-size: clamp(38px, 5vw, 54px);
        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-surgery-hero-desc {
        font-size: 19px;
        color: #64748b;
        max-width: 800px;
        margin: 0 auto 32px;
    }

    /* 特色標籤 */
    .vet-surgery-features-tags {
        display: flex;
        gap: 16px;
        justify-content: center;
        flex-wrap: wrap;
        margin: 32px 0;
    }

    .vet-surgery-feature-tag {
        background: white;
        border: 2px solid #3b82f6;
        color: #3b82f6;
        padding: 12px 24px;
        border-radius: 999px;
        font-weight: 600;
        font-size: 15px;
        transition: all 0.3s ease;
    }

    .vet-surgery-feature-tag:hover {
        background: #3b82f6;
        color: white;
        transform: translateY(-2px);
    }

    .vet-surgery-cta {
        display: inline-flex;
        align-items: center;
        gap: 16px;
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 24px;
    }

    .vet-surgery-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-surgery-btn-primary:hover {
        background: #1e40af;
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
    }

    .vet-surgery-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-surgery-btn-secondary:hover {
        background: #3b82f6;
        color: white;
        transform: translateY(-2px);
    }

    .vet-surgery-section {
        padding: 60px 24px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .vet-surgery-section-title {
        text-align: center;
        font-size: clamp(32px, 4vw, 44px);
        font-weight: 700;
        margin-bottom: 16px;
        color: #1e293b;
    }

    .vet-surgery-section-subtitle {
        text-align: center;
        font-size: 17px;
        color: #64748b;
        max-width: 700px;
        margin: 0 auto 48px;
    }

    /* 介紹區塊 */
    .vet-surgery-intro {
        max-width: 900px;
        margin: 0 auto 48px;
        font-size: 17px;
        line-height: 1.9;
        color: #1e293b;
    }

    .vet-surgery-intro p {
        margin-bottom: 20px;
    }

    .vet-surgery-intro strong {
        color: #3b82f6;
        font-weight: 600;
    }

    /* 服務卡片 */
    .vet-surgery-services {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 24px;
        margin-bottom: 48px;
    }

    .vet-surgery-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;
    }

    .vet-surgery-service-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 40px rgba(59, 130, 246, 0.15);
        border-color: #3b82f6;
    }

    .vet-surgery-service-icon {
        font-size: 48px;
        margin-bottom: 16px;
    }

    .vet-surgery-service-card h4 {
        font-size: 22px;
        font-weight: 600;
        color: #1e293b;
        margin-bottom: 12px;
    }

    .vet-surgery-service-card p {
        font-size: 16px;
        color: #64748b;
        margin: 0;
    }

    /* 流程步驟 */
    .vet-surgery-process {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 24px;
        margin-bottom: 48px;
    }

    .vet-surgery-step {
        background: white;
        padding: 28px;
        border-radius: 18px;
        text-align: center;
        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;
    }

    .vet-surgery-step:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 30px rgba(59, 130, 246, 0.15);
    }

    .vet-surgery-step-number {
        position: absolute;
        top: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
        height: 40px;
        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: 18px;
        box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    }

    .vet-surgery-step-icon {
        font-size: 48px;
        margin: 20px 0 16px;
    }

    .vet-surgery-step h4 {
        font-size: 20px;
        font-weight: 600;
        color: #1e293b;
        margin-bottom: 12px;
    }

    .vet-surgery-step p {
        font-size: 15px;
        color: #64748b;
        margin: 0;
    }

    /* 安全措施 */
    .vet-surgery-safety {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 24px;
        margin-bottom: 48px;
    }

    .vet-surgery-safety-item {
        background: white;
        padding: 32px;
        border-radius: 18px;
        text-align: center;
        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-surgery-safety-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 30px rgba(59, 130, 246, 0.15);
    }

    .vet-surgery-safety-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;
    }

    .vet-surgery-safety-item h4 {
        font-size: 20px;
        font-weight: 600;
        color: #1e293b;
        margin-bottom: 10px;
    }

    .vet-surgery-safety-item p {
        font-size: 15px;
        color: #64748b;
        margin: 0;
    }

    /* 圖片容器 */
    .vet-surgery-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);
    }

    .vet-surgery-image-container img {
        width: 100%;
        height: auto;
        max-height: 400px;
        object-fit: cover;
        display: block;
        transition: transform 0.3s ease;
    }

    .vet-surgery-image-container:hover img {
        transform: scale(1.02);
    }

    .vet-surgery-image-caption {
        text-align: center;
        color: #64748b;
        font-size: 15px;
        margin-top: 12px;
        font-style: italic;
    }

    /* 優勢區塊 */
    .vet-surgery-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;
    }

    .vet-surgery-advantage h3 {
        font-size: clamp(28px, 4vw, 36px);
        font-weight: 700;
        margin-bottom: 24px;
        color: white;
    }

    .vet-surgery-advantage p {
        font-size: 18px;
        line-height: 1.8;
        margin-bottom: 16px;
        opacity: 0.95;
    }

    /* FAQ 區塊 */
    .vet-surgery-faq {
        background: white;
        padding: 60px 24px;
    }

    .vet-surgery-faq-container {
        max-width: 900px;
        margin: 0 auto;
    }

    .vet-surgery-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;
    }

    .vet-surgery-faq-item:hover {
        box-shadow: 0 4px 20px rgba(59, 130, 246, 0.1);
        transform: translateY(-2px);
    }

    .vet-surgery-faq-question {
        color: #3b82f6;
        font-size: 19px;
        font-weight: 600;
        margin-bottom: 12px;
    }

    .vet-surgery-faq-answer {
        color: #1e293b;
        font-size: 16px;
        line-height: 1.7;
        margin: 0;
    }

    .vet-surgery-faq-answer strong {
        color: #3b82f6;
        font-weight: 600;
    }

    /* CTA Banner */
    .vet-surgery-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);
    }

    .vet-surgery-cta-banner h3 {
        font-size: clamp(28px, 4vw, 36px);
        font-weight: 700;
        margin-bottom: 16px;
        color: white;
    }

    .vet-surgery-cta-banner p {
        font-size: 17px;
        margin-bottom: 28px;
        opacity: 0.95;
    }

    /* 響應式設計 */
    @media (max-width: 768px) {
        .vet-surgery-hero {
            padding: 60px 16px;
        }

        .vet-surgery-section {
            padding: 40px 16px;
        }

        .vet-surgery-features-tags {
            flex-direction: column;
            align-items: center;
        }

        .vet-surgery-feature-tag {
            width: 100%;
            max-width: 300px;
            text-align: center;
        }

        .vet-surgery-services,
        .vet-surgery-process,
        .vet-surgery-safety {
            grid-template-columns: 1fr;
        }

        .vet-surgery-image-container {
            padding: 0 16px;
            margin: 30px auto;
        }

        .vet-surgery-image-container img {
            max-height: 250px;
        }

        .vet-surgery-cta {
            flex-direction: column;
            width: 100%;
        }

        .vet-surgery-btn-primary,
        .vet-surgery-btn-secondary {
            width: 100%;
            justify-content: center;
        }

        .vet-surgery-cta-banner,
        .vet-surgery-advantage {
            padding: 36px 20px;
        }
    }
