
    /* 平價獸醫服務頁面專用樣式 */
    .affordable-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;
    }

    .affordable-hero {
        text-align: center;
        padding: 80px 24px;
        background: linear-gradient(180deg, #f0f9ff 0%, #ffffff 100%);
    }

    .affordable-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;
    }

    .affordable-hero-desc {
        font-size: 19px;
        color: #64748b;
        max-width: 800px;
        margin: 0 auto 32px;
    }

    .affordable-mission {
        background: white;
        border: 2px solid #3b82f6;
        border-radius: 18px;
        padding: 24px 32px;
        max-width: 700px;
        margin: 32px auto;
        font-size: 17px;
        color: #1e293b;
        line-height: 1.8;
    }

    .affordable-mission strong {
        color: #3b82f6;
        font-weight: 600;
    }

    .affordable-cta {
        display: inline-flex;
        align-items: center;
        gap: 16px;
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 24px;
    }

    .affordable-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;
    }

    .affordable-btn-primary:hover {
        background: #1e40af;
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
    }

    .affordable-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;
    }

    .affordable-btn-secondary:hover {
        background: #3b82f6;
        color: white;
        transform: translateY(-2px);
    }

    .affordable-section {
        padding: 60px 24px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .affordable-section-title {
        text-align: center;
        font-size: clamp(32px, 4vw, 44px);
        font-weight: 700;
        margin-bottom: 16px;
        color: #1e293b;
    }

    .affordable-section-subtitle {
        text-align: center;
        font-size: 17px;
        color: #64748b;
        max-width: 700px;
        margin: 0 auto 48px;
    }

    /* 介紹區塊 */
    .affordable-intro {
        max-width: 900px;
        margin: 0 auto 48px;
        font-size: 17px;
        line-height: 1.9;
        color: #1e293b;
    }

    .affordable-intro p {
        margin-bottom: 20px;
    }

    .affordable-intro strong {
        color: #3b82f6;
        font-weight: 600;
    }

    /* 亮點卡片 */
    .affordable-highlights {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 24px;
        margin-bottom: 48px;
    }

    .affordable-highlight-card {
        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;
    }

    .affordable-highlight-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 30px rgba(59, 130, 246, 0.15);
    }

    .affordable-highlight-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;
    }

    .affordable-highlight-card h4 {
        font-size: 20px;
        font-weight: 600;
        color: #1e293b;
        margin-bottom: 10px;
    }

    .affordable-highlight-card p {
        font-size: 15px;
        color: #64748b;
        margin: 0;
    }

    /* 價格對比表 */
    .affordable-comparison {
        background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
        padding: 48px 32px;
        border-radius: 20px;
        max-width: 1000px;
        margin: 0 auto 48px;
    }

    .affordable-comparison h3 {
        font-size: 28px;
        font-weight: 700;
        color: #1e293b;
        text-align: center;
        margin-bottom: 32px;
    }

    .affordable-comparison-table {
        background: white;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    }

    .affordable-comparison-row {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr;
        gap: 16px;
        padding: 16px 24px;
        border-bottom: 1px solid #e2e8f0;
        align-items: center;
    }

    .affordable-comparison-row:first-child {
        background: #3b82f6;
        color: white;
        font-weight: 600;
    }

    .affordable-comparison-row:last-child {
        border-bottom: none;
    }

    .affordable-comparison-row:not(:first-child):hover {
        background: #f8fafc;
    }

    .affordable-price-ours {
        color: #10b981;
        font-weight: 700;
        font-size: 18px;
    }

    .affordable-price-market {
        color: #64748b;
        font-size: 16px;
    }

    /* 服務卡片 */
    .affordable-services {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 24px;
        margin-bottom: 48px;
    }

    .affordable-service-card {
        background: white;
        padding: 28px;
        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;
    }

    .affordable-service-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 40px rgba(59, 130, 246, 0.15);
        border-color: #3b82f6;
    }

    .affordable-service-icon {
        font-size: 48px;
        margin-bottom: 16px;
    }

    .affordable-service-card h4 {
        font-size: 22px;
        font-weight: 600;
        color: #1e293b;
        margin-bottom: 12px;
    }

    .affordable-service-card p {
        font-size: 15px;
        color: #64748b;
        margin-bottom: 16px;
    }

    .affordable-service-price {
        font-size: 24px;
        font-weight: 700;
        color: #10b981;
        margin-top: 16px;
    }

    /* 建議區塊 */
    .affordable-tips {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 24px;
        margin-bottom: 48px;
    }

    .affordable-tip-card {
        background: white;
        padding: 28px;
        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;
    }

    .affordable-tip-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 30px rgba(59, 130, 246, 0.15);
    }

    .affordable-tip-number {
        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;
        margin-bottom: 16px;
    }

    .affordable-tip-card h4 {
        font-size: 20px;
        font-weight: 600;
        color: #1e293b;
        margin-bottom: 12px;
    }

    .affordable-tip-card p {
        font-size: 15px;
        color: #64748b;
        margin: 0;
    }

    /* 圖片容器 */
    .affordable-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);
    }

    .affordable-image-container img {
        width: 100%;
        height: auto;
        max-height: 400px;
        object-fit: cover;
        display: block;
        transition: transform 0.3s ease;
    }

    .affordable-image-container:hover img {
        transform: scale(1.02);
    }

    .affordable-image-caption {
        text-align: center;
        color: #64748b;
        font-size: 15px;
        margin-top: 12px;
        font-style: italic;
    }

    /* 優勢區塊 */
    .affordable-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;
    }

    .affordable-advantage h3 {
        font-size: clamp(28px, 4vw, 36px);
        font-weight: 700;
        margin-bottom: 24px;
        color: white;
    }

    .affordable-advantage p {
        font-size: 18px;
        line-height: 1.8;
        margin-bottom: 16px;
        opacity: 0.95;
    }

    /* FAQ 區塊 */
    .affordable-faq {
        background: white;
        padding: 60px 24px;
    }

    .affordable-faq-container {
        max-width: 900px;
        margin: 0 auto;
    }

    .affordable-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;
    }

    .affordable-faq-item:hover {
        box-shadow: 0 4px 20px rgba(59, 130, 246, 0.1);
        transform: translateY(-2px);
    }

    .affordable-faq-question {
        color: #3b82f6;
        font-size: 19px;
        font-weight: 600;
        margin-bottom: 12px;
    }

    .affordable-faq-answer {
        color: #1e293b;
        font-size: 16px;
        line-height: 1.7;
        margin: 0;
    }

    .affordable-faq-answer strong {
        color: #3b82f6;
        font-weight: 600;
    }

    /* CTA Banner */
    .affordable-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);
    }

    .affordable-cta-banner h3 {
        font-size: clamp(28px, 4vw, 36px);
        font-weight: 700;
        margin-bottom: 16px;
        color: white;
    }

    .affordable-cta-banner p {
        font-size: 17px;
        margin-bottom: 28px;
        opacity: 0.95;
    }

    /* 響應式設計 */
    @media (max-width: 768px) {
        .affordable-hero {
            padding: 60px 16px;
        }

        .affordable-section {
            padding: 40px 16px;
        }

        .affordable-highlights,
        .affordable-services,
        .affordable-tips {
            grid-template-columns: 1fr;
        }

        .affordable-comparison {
            padding: 32px 20px;
        }

        .affordable-comparison-row {
            grid-template-columns: 1fr;
            gap: 8px;
        }

        .affordable-comparison-row:first-child {
            display: none;
        }

        .affordable-image-container {
            padding: 0 16px;
            margin: 30px auto;
        }

        .affordable-image-container img {
            max-height: 250px;
        }

        .affordable-cta {
            flex-direction: column;
            width: 100%;
        }

        .affordable-btn-primary,
        .affordable-btn-secondary {
            width: 100%;
            justify-content: center;
        }

        .affordable-cta-banner,
        .affordable-advantage {
            padding: 36px 20px;
        }
    }
