
    :root {
        --primary-blue: #3b82f6;
        --dark-blue: #1e293b;
        --light-blue: #eff6ff;
        --accent-blue: #60a5fa;
        --text-gray: #334155;
        --white: #ffffff;
        --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
        --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
        --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
        --radius: 18px;
    }

    .vet-article-container {
        font-family: -apple-system, BlinkMacSystemFont, "SF Pro TC", "PingFang TC", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
        line-height: 1.6;
        color: var(--text-gray);
        max-width: 800px;
        margin: 0 auto;
        padding: 20px;
        background-color: #fff;
    }

    .vet-h1 {
        font-size: 2.25rem;
        font-weight: 700;
        color: var(--dark-blue);
        margin-bottom: 1.5rem;
        line-height: 1.2;
        letter-spacing: -0.025em;
    }

    .vet-h2 {
        font-size: 1.75rem;
        font-weight: 600;
        color: var(--dark-blue);
        margin-top: 3rem;
        margin-bottom: 1rem;
        position: relative;
        padding-left: 1rem;
        border-left: 4px solid var(--primary-blue);
    }

    .vet-h3 {
        font-size: 1.35rem;
        font-weight: 600;
        color: var(--primary-blue);
        margin-top: 2rem;
        margin-bottom: 0.75rem;
    }

    .vet-meta {
        background-color: var(--light-blue);
        padding: 1.5rem;
        border-radius: var(--radius);
        color: var(--dark-blue);
        font-style: italic;
        margin-bottom: 2rem;
        border: 1px solid #dbeafe;
    }

    .vet-hero-section {
        position: relative;
        margin-bottom: 3rem;
        border-radius: var(--radius);
        overflow: hidden;
        box-shadow: var(--shadow-md);
    }

    .vet-hero-img {
        width: 100%;
        height: 400px;
        object-fit: cover;
        display: block;
        transition: transform 0.3s ease;
    }

    .vet-hero-img:hover {
        transform: scale(1.02);
    }

    .vet-price-card {
        position: absolute;
        bottom: 20px;
        right: 20px;
        background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
        color: white;
        padding: 1.5rem;
        border-radius: 20px;
        box-shadow: var(--shadow-lg);
        backdrop-filter: blur(10px);
        max-width: 280px;
    }

    .vet-price-large {
        font-size: 2.5rem;
        font-weight: 800;
        line-height: 1;
    }

    .vet-price-sub {
        font-size: 0.9rem;
        opacity: 0.9;
    }

    .vet-content p {
        margin-bottom: 1.2rem;
        font-size: 1.1rem;
    }

    .vet-list {
        list-style: none;
        padding: 0;
        margin-bottom: 1.5rem;
    }

    .vet-list li {
        position: relative;
        padding-left: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .vet-list li::before {
        content: "✓";
        position: absolute;
        left: 0;
        color: var(--primary-blue);
        font-weight: bold;
    }

    .vet-alert-box {
        background-color: #fff1f2; /* Very light red/pink for medical alert, kept soft */
        border-left: 4px solid #fb7185;
        padding: 1.5rem;
        border-radius: 0 var(--radius) var(--radius) 0;
        margin: 2rem 0;
    }
    
    /* Using blue theme for standard info boxes */
    .vet-info-box {
        background-color: var(--light-blue);
        border-left: 4px solid var(--primary-blue);
        padding: 1.5rem;
        border-radius: 0 var(--radius) var(--radius) 0;
        margin: 2rem 0;
    }

    .vet-cta-group {
        display: flex;
        gap: 1rem;
        margin: 2rem 0;
        flex-wrap: wrap;
    }

    .vet-btn-primary {
        background-color: var(--primary-blue);
        color: white;
        padding: 12px 24px;
        border-radius: 999px;
        text-decoration: none;
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        transition: all 0.2s;
        box-shadow: var(--shadow-sm);
    }

    .vet-btn-primary:hover {
        background-color: var(--dark-blue);
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

    .vet-btn-secondary {
        background-color: white;
        color: var(--primary-blue);
        border: 2px solid var(--primary-blue);
        padding: 10px 22px;
        border-radius: 999px;
        text-decoration: none;
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        transition: all 0.2s;
    }

    .vet-btn-secondary:hover {
        background-color: var(--light-blue);
    }

    .vet-table {
        width: 100%;
        border-collapse: collapse;
        margin: 2rem 0;
        background: white;
        border-radius: var(--radius);
        overflow: hidden;
        box-shadow: var(--shadow-sm);
    }

    .vet-table th {
        background-color: var(--dark-blue);
        color: white;
        padding: 15px;
        text-align: left;
    }

    .vet-table td {
        padding: 15px;
        border-bottom: 1px solid #e2e8f0;
    }

    .vet-faq-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .vet-faq-card {
        background: white;
        padding: 1.5rem;
        border-radius: var(--radius);
        border: 1px solid #e2e8f0;
        box-shadow: var(--shadow-sm);
        transition: all 0.3s ease;
    }

    .vet-faq-card:hover {
        border-color: var(--primary-blue);
        box-shadow: var(--shadow-md);
        transform: translateY(-3px);
    }

    .vet-faq-q {
        color: var(--primary-blue);
        font-weight: 700;
        margin-bottom: 0.5rem;
        display: block;
    }

    .vet-price-badge {
        display: inline-block;
        background-color: var(--primary-blue);
        color: white;
        padding: 4px 12px;
        border-radius: 999px;
        font-size: 0.9rem;
        font-weight: bold;
        margin-bottom: 0.5rem;
    }

    .vet-location-badge {
        background-color: var(--light-blue);
        color: var(--dark-blue);
        padding: 8px 16px;
        border-radius: 8px;
        font-weight: 600;
        display: inline-block;
        margin-bottom: 1rem;
    }

    @media (max-width: 768px) {
        .vet-h1 { font-size: 1.75rem; }
        .vet-price-card {
            position: relative;
            bottom: 0;
            right: 0;
            width: 100%;
            max-width: none;
            border-radius: 0 0 var(--radius) var(--radius);
            margin-top: -20px;
        }
        .vet-hero-img { height: 250px; }
        .vet-cta-group { flex-direction: column; }
        .vet-btn-primary, .vet-btn-secondary { width: 100%; justify-content: center; }
    }
