
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --vet-dog-primary: #0071e3;
            --vet-dog-whatsapp: #25d366;
            --vet-dog-text: #1d1d1f;
            --vet-dog-secondary: #86868b;
            --vet-dog-light-bg: #f5f5f7;
            --vet-dog-white: #ffffff;
            --vet-dog-border: #d2d2d7;
            --vet-dog-hover: #0077ed;
            --vet-dog-shadow: rgba(0, 0, 0, 0.08);
            --vet-dog-dark-shadow: rgba(0, 0, 0, 0.12);
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang TC", "Microsoft JhengHei", sans-serif;
            line-height: 1.6;
            color: var(--vet-dog-text);
            background-color: var(--vet-dog-white);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        .vet-dog-header {
            background: var(--vet-dog-white);
            box-shadow: 0 1px 3px var(--vet-dog-shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--vet-dog-border);
        }

        .vet-dog-nav {
            max-width: 1200px;
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .vet-dog-logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--vet-dog-text);
            text-decoration: none;
            letter-spacing: -0.5px;
        }

        .vet-dog-contact-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .vet-dog-btn {
            padding: 0.6rem 1.5rem;
            border-radius: 980px;
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            border: none;
            cursor: pointer;
        }

        .vet-dog-btn-primary {
            background: var(--vet-dog-primary);
            color: var(--vet-dog-white);
        }

        .vet-dog-btn-primary:hover {
            background: var(--vet-dog-hover);
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(0, 113, 227, 0.3);
        }

        .vet-dog-btn-whatsapp {
            background: var(--vet-dog-whatsapp);
            color: var(--vet-dog-white);
        }

        .vet-dog-btn-whatsapp:hover {
            background: #22c55e;
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
        }

        .vet-dog-hero {
            background: linear-gradient(135deg, #f5f5f7 0%, #e8e8ed 100%);
            padding: 4rem 2rem;
            text-align: center;
        }

        .vet-dog-hero-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .vet-dog-hero h1 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            letter-spacing: -1px;
            line-height: 1.1;
        }

        .vet-dog-hero-description {
            font-size: 1.3rem;
            color: var(--vet-dog-secondary);
            margin-bottom: 2rem;
            line-height: 1.5;
        }

        .vet-dog-hero-cta {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .vet-dog-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 4rem 2rem;
        }

        .vet-dog-section {
            margin-bottom: 5rem;
        }

        .vet-dog-section-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            letter-spacing: -0.5px;
            text-align: center;
        }

        .vet-dog-section-subtitle {
            font-size: 1.2rem;
            color: var(--vet-dog-secondary);
            text-align: center;
            margin-bottom: 3rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .vet-dog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .vet-dog-card {
            background: var(--vet-dog-white);
            border-radius: 18px;
            padding: 2rem;
            box-shadow: 0 4px 12px var(--vet-dog-shadow);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid var(--vet-dog-border);
        }

        .vet-dog-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 24px var(--vet-dog-dark-shadow);
        }

        .vet-dog-card-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--vet-dog-primary), var(--vet-dog-hover));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            font-size: 1.8rem;
        }

        .vet-dog-card h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--vet-dog-text);
        }

        .vet-dog-card p {
            color: var(--vet-dog-secondary);
            line-height: 1.7;
            margin-bottom: 1rem;
        }

        .vet-dog-card ul {
            list-style: none;
            margin-top: 1rem;
        }

        .vet-dog-card li {
            padding: 0.5rem 0;
            color: var(--vet-dog-secondary);
            position: relative;
            padding-left: 1.5rem;
        }

        .vet-dog-card li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--vet-dog-primary);
            font-weight: bold;
        }

        .vet-dog-warning-box {
            background: #fff3cd;
            border-left: 4px solid #ffc107;
            padding: 1.5rem;
            border-radius: 12px;
            margin: 2rem 0;
        }

        .vet-dog-warning-box h4 {
            color: #856404;
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
        }

        .vet-dog-warning-box p {
            color: #856404;
            margin: 0;
        }

        .vet-dog-info-box {
            background: #d1ecf1;
            border-left: 4px solid #0c5460;
            padding: 1.5rem;
            border-radius: 12px;
            margin: 2rem 0;
        }

        .vet-dog-info-box h4 {
            color: #0c5460;
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
        }

        .vet-dog-info-box p {
            color: #0c5460;
            margin: 0;
        }

        .vet-dog-success-box {
            background: #d4edda;
            border-left: 4px solid #28a745;
            padding: 1.5rem;
            border-radius: 12px;
            margin: 2rem 0;
        }

        .vet-dog-success-box h4 {
            color: #155724;
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
        }

        .vet-dog-success-box p {
            color: #155724;
            margin: 0;
        }

        .vet-dog-timeline {
            position: relative;
            padding-left: 2rem;
        }

        .vet-dog-timeline::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 2px;
            background: var(--vet-dog-border);
        }

        .vet-dog-timeline-item {
            position: relative;
            margin-bottom: 2rem;
            padding-left: 2rem;
        }

        .vet-dog-timeline-item::before {
            content: '';
            position: absolute;
            left: -2rem;
            top: 0.5rem;
            width: 12px;
            height: 12px;
            background: var(--vet-dog-primary);
            border-radius: 50%;
            margin-left: -5px;
        }

        .vet-dog-timeline-item h4 {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--vet-dog-text);
        }

        .vet-dog-timeline-item p {
            color: var(--vet-dog-secondary);
            line-height: 1.7;
        }

        .vet-dog-faq {
            background: var(--vet-dog-light-bg);
            padding: 4rem 2rem;
        }

        .vet-dog-faq-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .vet-dog-faq-item {
            background: var(--vet-dog-white);
            border-radius: 12px;
            margin-bottom: 1rem;
            overflow: hidden;
            box-shadow: 0 2px 8px var(--vet-dog-shadow);
        }

        .vet-dog-faq-question {
            width: 100%;
            padding: 1.5rem;
            text-align: left;
            background: var(--vet-dog-white);
            border: none;
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--vet-dog-text);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background 0.3s ease;
        }

        .vet-dog-faq-question:hover {
            background: var(--vet-dog-light-bg);
        }

        .vet-dog-faq-answer {
            padding: 0 1.5rem 1.5rem;
            color: var(--vet-dog-secondary);
            line-height: 1.7;
        }

        .vet-dog-reviews {
            background: var(--vet-dog-white);
            padding: 4rem 2rem;
        }

        .vet-dog-review-card {
            background: var(--vet-dog-light-bg);
            border-radius: 18px;
            padding: 2rem;
            margin-bottom: 1.5rem;
        }

        .vet-dog-review-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .vet-dog-review-avatar {
            width: 50px;
            height: 50px;
            background: var(--vet-dog-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--vet-dog-white);
            font-weight: 600;
            font-size: 1.2rem;
        }

        .vet-dog-review-info h4 {
            font-weight: 600;
            margin-bottom: 0.2rem;
        }

        .vet-dog-review-stars {
            color: #ffc107;
            font-size: 1.1rem;
        }

        .vet-dog-review-text {
            color: var(--vet-dog-secondary);
            line-height: 1.7;
        }

        .vet-dog-pricing {
            background: linear-gradient(135deg, var(--vet-dog-primary), var(--vet-dog-hover));
            color: var(--vet-dog-white);
            padding: 4rem 2rem;
            text-align: center;
        }

        .vet-dog-pricing-content {
            max-width: 600px;
            margin: 0 auto;
        }

        .vet-dog-pricing h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .vet-dog-price {
            font-size: 4rem;
            font-weight: 700;
            margin: 2rem 0;
        }

        .vet-dog-price-note {
            font-size: 1.1rem;
            opacity: 0.9;
            margin-bottom: 2rem;
        }

        .vet-dog-location {
            background: var(--vet-dog-white);
            padding: 4rem 2rem;
        }

        .vet-dog-location-content {
            max-width: 1000px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
        }

        .vet-dog-location-info {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .vet-dog-location-item {
            display: flex;
            gap: 1rem;
            align-items: start;
        }

        .vet-dog-location-icon {
            width: 40px;
            height: 40px;
            background: var(--vet-dog-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--vet-dog-white);
            flex-shrink: 0;
        }

        .vet-dog-location-text h4 {
            font-weight: 600;
            margin-bottom: 0.3rem;
        }

        .vet-dog-location-text p {
            color: var(--vet-dog-secondary);
        }

        .vet-dog-footer {
            background: var(--vet-dog-text);
            color: var(--vet-dog-white);
            padding: 3rem 2rem;
            text-align: center;
        }

        .vet-dog-footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .vet-dog-footer p {
            color: var(--vet-dog-secondary);
            margin-bottom: 1rem;
        }

        .vet-dog-table {
            width: 100%;
            border-collapse: collapse;
            margin: 2rem 0;
            background: var(--vet-dog-white);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 8px var(--vet-dog-shadow);
        }

        .vet-dog-table th {
            background: var(--vet-dog-primary);
            color: var(--vet-dog-white);
            padding: 1rem;
            text-align: left;
            font-weight: 600;
        }

        .vet-dog-table td {
            padding: 1rem;
            border-bottom: 1px solid var(--vet-dog-border);
            color: var(--vet-dog-secondary);
        }

        .vet-dog-table tr:last-child td {
            border-bottom: none;
        }

        .vet-dog-table tr:nth-child(even) {
            background: var(--vet-dog-light-bg);
        }

        .vet-dog-checklist {
            list-style: none;
            margin: 1.5rem 0;
        }

        .vet-dog-checklist li {
            padding: 0.8rem 0;
            padding-left: 2rem;
            position: relative;
            color: var(--vet-dog-secondary);
            line-height: 1.7;
        }

        .vet-dog-checklist li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--vet-dog-primary);
            font-weight: bold;
            font-size: 1.2rem;
        }

        .vet-dog-highlight {
            background: linear-gradient(135deg, #f5f5f7 0%, #e8e8ed 100%);
            padding: 2rem;
            border-radius: 18px;
            margin: 2rem 0;
        }

        .vet-dog-highlight h3 {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--vet-dog-text);
        }

        .vet-dog-highlight p {
            color: var(--vet-dog-secondary);
            line-height: 1.7;
            margin-bottom: 1rem;
        }

        .vet-dog-cta-section {
            background: var(--vet-dog-light-bg);
            padding: 4rem 2rem;
            text-align: center;
        }

        .vet-dog-cta-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .vet-dog-cta-content h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            letter-spacing: -0.5px;
        }

        .vet-dog-cta-content p {
            font-size: 1.2rem;
            color: var(--vet-dog-secondary);
            margin-bottom: 2rem;
        }

        @media (max-width: 768px) {
            .vet-dog-hero h1 {
                font-size: 2rem;
            }

            .vet-dog-hero-description {
                font-size: 1.1rem;
            }

            .vet-dog-section-title {
                font-size: 2rem;
            }

            .vet-dog-grid {
                grid-template-columns: 1fr;
            }

            .vet-dog-nav {
                flex-direction: column;
                align-items: stretch;
            }

            .vet-dog-contact-buttons {
                flex-direction: column;
            }

            .vet-dog-btn {
                width: 100%;
                justify-content: center;
            }

            .vet-dog-price {
                font-size: 3rem;
            }

            .vet-dog-location-content {
                grid-template-columns: 1fr;
            }
        }

        .vet-dog-content-block {
            margin-bottom: 3rem;
        }

        .vet-dog-content-block h3 {
            font-size: 1.8rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--vet-dog-text);
        }

        .vet-dog-content-block h4 {
            font-size: 1.4rem;
            font-weight: 600;
            margin-top: 1.5rem;
            margin-bottom: 0.8rem;
            color: var(--vet-dog-text);
        }

        .vet-dog-content-block p {
            color: var(--vet-dog-secondary);
            line-height: 1.8;
            margin-bottom: 1rem;
        }

        .vet-dog-content-block ul {
            list-style: none;
            margin: 1rem 0;
        }

        .vet-dog-content-block ul li {
            padding: 0.5rem 0;
            padding-left: 1.5rem;
            position: relative;
            color: var(--vet-dog-secondary);
        }

        .vet-dog-content-block ul li::before {
            content: "•";
            position: absolute;
            left: 0;
            color: var(--vet-dog-primary);
            font-weight: bold;
            font-size: 1.5rem;
        }

        .vet-dog-two-column {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 2rem 0;
        }

        .vet-dog-column {
            background: var(--vet-dog-light-bg);
            padding: 2rem;
            border-radius: 12px;
        }

        .vet-dog-column h4 {
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--vet-dog-text);
        }

        .vet-dog-column p {
            color: var(--vet-dog-secondary);
            line-height: 1.7;
        }

        .vet-dog-steps {
            counter-reset: step-counter;
            list-style: none;
            margin: 2rem 0;
        }

        .vet-dog-steps li {
            counter-increment: step-counter;
            position: relative;
            padding: 1.5rem 1.5rem 1.5rem 4rem;
            margin-bottom: 1.5rem;
            background: var(--vet-dog-light-bg);
            border-radius: 12px;
        }

        .vet-dog-steps li::before {
            content: counter(step-counter);
            position: absolute;
            left: 1rem;
            top: 1.5rem;
            width: 2rem;
            height: 2rem;
            background: var(--vet-dog-primary);
            color: var(--vet-dog-white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
        }

        .vet-dog-steps li strong {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--vet-dog-text);
            font-size: 1.1rem;
        }

        .vet-dog-steps li p {
            margin: 0;
            color: var(--vet-dog-secondary);
        }
    