
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --vet-dog-primary: #0071e3;
            --vet-dog-whatsapp: #25d366;
            --vet-dog-dark: #1d1d1f;
            --vet-dog-gray: #86868b;
            --vet-dog-light-gray: #f5f5f7;
            --vet-dog-white: #ffffff;
            --vet-dog-shadow: rgba(0, 0, 0, 0.1);
            --vet-dog-border: #d2d2d7;
            --vet-dog-accent: #ff9500;
            --vet-dog-success: #34c759;
            --vet-dog-warning: #ff3b30;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "PingFang HK", "Microsoft JhengHei", sans-serif;
            line-height: 1.6;
            color: var(--vet-dog-dark);
            background-color: var(--vet-dog-white);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        .vet-dog-container {
            max-width: 980px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .vet-dog-wide-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        .vet-dog-header {
            background-color: rgba(255, 255, 255, 0.8);
            backdrop-filter: saturate(180%) blur(20px);
            -webkit-backdrop-filter: saturate(180%) blur(20px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--vet-dog-border);
        }

        .vet-dog-nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 16px 0;
        }

        .vet-dog-logo {
            font-size: 24px;
            font-weight: 600;
            color: var(--vet-dog-dark);
            text-decoration: none;
        }

        .vet-dog-nav-links {
            display: flex;
            gap: 30px;
            list-style: none;
        }

        .vet-dog-nav-links a {
            color: var(--vet-dog-dark);
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease;
        }

        .vet-dog-nav-links a:hover {
            color: var(--vet-dog-primary);
        }

        /* Hero Section */
        .vet-dog-hero {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: var(--vet-dog-white);
            padding: 100px 0 80px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .vet-dog-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
            opacity: 0.3;
        }

        .vet-dog-hero-content {
            position: relative;
            z-index: 1;
        }

        .vet-dog-hero h1 {
            font-size: 56px;
            font-weight: 700;
            margin-bottom: 20px;
            letter-spacing: -0.5px;
        }

        .vet-dog-hero-subtitle {
            font-size: 24px;
            margin-bottom: 30px;
            opacity: 0.95;
            font-weight: 400;
        }

        .vet-dog-hero-description {
            font-size: 18px;
            max-width: 700px;
            margin: 0 auto 40px;
            opacity: 0.9;
            line-height: 1.8;
        }

        .vet-dog-cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .vet-dog-btn {
            padding: 14px 32px;
            border-radius: 980px;
            font-size: 16px;
            font-weight: 500;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .vet-dog-btn-primary {
            background-color: var(--vet-dog-primary);
            color: var(--vet-dog-white);
        }

        .vet-dog-btn-primary:hover {
            background-color: #0077ed;
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(0, 113, 227, 0.3);
        }

        .vet-dog-btn-whatsapp {
            background-color: var(--vet-dog-whatsapp);
            color: var(--vet-dog-white);
        }

        .vet-dog-btn-whatsapp:hover {
            background-color: #20bd5a;
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
        }

        .vet-dog-btn-secondary {
            background-color: var(--vet-dog-white);
            color: var(--vet-dog-dark);
        }

        .vet-dog-btn-secondary:hover {
            background-color: var(--vet-dog-light-gray);
            transform: translateY(-2px);
        }

        /* Info Bar */
        .vet-dog-info-bar {
            background-color: var(--vet-dog-light-gray);
            padding: 30px 0;
            border-bottom: 1px solid var(--vet-dog-border);
        }

        .vet-dog-info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .vet-dog-info-item {
            text-align: center;
        }

        .vet-dog-info-icon {
            font-size: 32px;
            margin-bottom: 10px;
        }

        .vet-dog-info-title {
            font-size: 14px;
            color: var(--vet-dog-gray);
            margin-bottom: 5px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .vet-dog-info-value {
            font-size: 18px;
            font-weight: 600;
            color: var(--vet-dog-dark);
        }

        /* Section Styles */
        .vet-dog-section {
            padding: 80px 0;
        }

        .vet-dog-section-gray {
            background-color: var(--vet-dog-light-gray);
        }

        .vet-dog-section-title {
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 20px;
            text-align: center;
            letter-spacing: -0.5px;
        }

        .vet-dog-section-subtitle {
            font-size: 20px;
            color: var(--vet-dog-gray);
            text-align: center;
            margin-bottom: 60px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Understanding Section */
        .vet-dog-understanding {
            background: linear-gradient(to bottom, var(--vet-dog-white), var(--vet-dog-light-gray));
            padding: 80px 0;
        }

        .vet-dog-understanding-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .vet-dog-understanding-intro {
            font-size: 20px;
            line-height: 1.8;
            color: var(--vet-dog-dark);
            margin-bottom: 40px;
            text-align: center;
        }

        .vet-dog-understanding-text {
            font-size: 17px;
            line-height: 1.8;
            color: var(--vet-dog-dark);
            margin-bottom: 30px;
        }

        .vet-dog-highlight-box {
            background-color: var(--vet-dog-white);
            border-left: 4px solid var(--vet-dog-primary);
            padding: 30px;
            border-radius: 12px;
            margin: 40px 0;
            box-shadow: 0 4px 20px var(--vet-dog-shadow);
        }

        .vet-dog-highlight-box h3 {
            font-size: 24px;
            margin-bottom: 15px;
            color: var(--vet-dog-primary);
        }

        /* Symptoms Grid */
        .vet-dog-symptoms-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .vet-dog-symptom-card {
            background-color: var(--vet-dog-white);
            padding: 35px;
            border-radius: 16px;
            box-shadow: 0 4px 20px var(--vet-dog-shadow);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .vet-dog-symptom-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
        }

        .vet-dog-symptom-icon {
            font-size: 48px;
            margin-bottom: 20px;
            display: block;
        }

        .vet-dog-symptom-card h3 {
            font-size: 22px;
            margin-bottom: 15px;
            color: var(--vet-dog-dark);
        }

        .vet-dog-symptom-card p {
            color: var(--vet-dog-gray);
            line-height: 1.7;
            font-size: 16px;
        }

        .vet-dog-symptom-list {
            list-style: none;
            margin-top: 15px;
        }

        .vet-dog-symptom-list li {
            padding: 8px 0;
            padding-left: 25px;
            position: relative;
            color: var(--vet-dog-dark);
        }

        .vet-dog-symptom-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--vet-dog-success);
            font-weight: bold;
        }

        /* Causes Section */
        .vet-dog-causes-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin-top: 50px;
        }

        .vet-dog-cause-card {
            background-color: var(--vet-dog-white);
            padding: 30px;
            border-radius: 16px;
            box-shadow: 0 4px 20px var(--vet-dog-shadow);
            border-top: 4px solid var(--vet-dog-accent);
        }

        .vet-dog-cause-card h3 {
            font-size: 20px;
            margin-bottom: 12px;
            color: var(--vet-dog-dark);
        }

        .vet-dog-cause-card p {
            color: var(--vet-dog-gray);
            line-height: 1.7;
            font-size: 15px;
        }

        /* Training Solutions */
        .vet-dog-training-section {
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            padding: 80px 0;
        }

        .vet-dog-training-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            margin-top: 50px;
        }

        .vet-dog-training-card {
            background-color: var(--vet-dog-white);
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        }

        .vet-dog-training-number {
            display: inline-block;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--vet-dog-primary), #0096ff);
            color: var(--vet-dog-white);
            border-radius: 50%;
            text-align: center;
            line-height: 50px;
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 20px;
        }

        .vet-dog-training-card h3 {
            font-size: 24px;
            margin-bottom: 15px;
            color: var(--vet-dog-dark);
        }

        .vet-dog-training-card p {
            color: var(--vet-dog-gray);
            line-height: 1.8;
            margin-bottom: 20px;
            font-size: 16px;
        }

        .vet-dog-training-steps {
            list-style: none;
            margin-top: 20px;
        }

        .vet-dog-training-steps li {
            padding: 12px 0;
            padding-left: 30px;
            position: relative;
            color: var(--vet-dog-dark);
            border-bottom: 1px solid var(--vet-dog-light-gray);
        }

        .vet-dog-training-steps li:last-child {
            border-bottom: none;
        }

        .vet-dog-training-steps li::before {
            content: '→';
            position: absolute;
            left: 0;
            color: var(--vet-dog-primary);
            font-weight: bold;
            font-size: 18px;
        }

        /* Environment Management */
        .vet-dog-environment-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin-top: 50px;
        }

        .vet-dog-environment-card {
            background-color: var(--vet-dog-white);
            padding: 35px;
            border-radius: 16px;
            box-shadow: 0 4px 20px var(--vet-dog-shadow);
        }

        .vet-dog-environment-icon {
            font-size: 42px;
            margin-bottom: 20px;
            display: block;
        }

        .vet-dog-environment-card h3 {
            font-size: 22px;
            margin-bottom: 15px;
            color: var(--vet-dog-dark);
        }

        .vet-dog-environment-list {
            list-style: none;
        }

        .vet-dog-environment-list li {
            padding: 10px 0;
            padding-left: 30px;
            position: relative;
            color: var(--vet-dog-dark);
            line-height: 1.6;
        }

        .vet-dog-environment-list li::before {
            content: '●';
            position: absolute;
            left: 0;
            color: var(--vet-dog-primary);
            font-size: 12px;
        }

        /* Medication Section */
        .vet-dog-medication-section {
            background: linear-gradient(to right, #ffecd2 0%, #fcb69f 100%);
            padding: 80px 0;
        }

        .vet-dog-medication-content {
            max-width: 900px;
            margin: 0 auto;
        }

        .vet-dog-medication-intro {
            background-color: var(--vet-dog-white);
            padding: 40px;
            border-radius: 20px;
            margin-bottom: 40px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        }

        .vet-dog-medication-intro h3 {
            font-size: 26px;
            margin-bottom: 20px;
            color: var(--vet-dog-dark);
        }

        .vet-dog-medication-intro p {
            font-size: 17px;
            line-height: 1.8;
            color: var(--vet-dog-gray);
            margin-bottom: 15px;
        }

        .vet-dog-medication-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
        }

        .vet-dog-medication-card {
            background-color: var(--vet-dog-white);
            padding: 30px;
            border-radius: 16px;
            box-shadow: 0 4px 20px var(--vet-dog-shadow);
        }

        .vet-dog-medication-card h4 {
            font-size: 20px;
            margin-bottom: 15px;
            color: var(--vet-dog-primary);
        }

        .vet-dog-medication-card p {
            color: var(--vet-dog-gray);
            line-height: 1.7;
            font-size: 15px;
        }

        .vet-dog-warning-box {
            background-color: #fff3cd;
            border-left: 4px solid var(--vet-dog-warning);
            padding: 25px;
            border-radius: 12px;
            margin-top: 30px;
        }

        .vet-dog-warning-box p {
            color: #856404;
            font-weight: 500;
            margin: 0;
        }

        /* Treatment Timeline */
        .vet-dog-timeline {
            position: relative;
            max-width: 800px;
            margin: 50px auto;
        }

        .vet-dog-timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 4px;
            height: 100%;
            background: linear-gradient(to bottom, var(--vet-dog-primary), var(--vet-dog-accent));
        }

        .vet-dog-timeline-item {
            margin-bottom: 50px;
            position: relative;
        }

        .vet-dog-timeline-content {
            background-color: var(--vet-dog-white);
            padding: 30px;
            border-radius: 16px;
            box-shadow: 0 4px 20px var(--vet-dog-shadow);
            width: calc(50% - 40px);
        }

        .vet-dog-timeline-item:nth-child(odd) .vet-dog-timeline-content {
            margin-left: auto;
        }

        .vet-dog-timeline-dot {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 20px;
            height: 20px;
            background-color: var(--vet-dog-primary);
            border: 4px solid var(--vet-dog-white);
            border-radius: 50%;
            top: 30px;
            box-shadow: 0 0 0 4px var(--vet-dog-light-gray);
        }

        .vet-dog-timeline-content h3 {
            font-size: 22px;
            margin-bottom: 10px;
            color: var(--vet-dog-dark);
        }

        .vet-dog-timeline-content p {
            color: var(--vet-dog-gray);
            line-height: 1.7;
        }

        /* FAQ Section */
        .vet-dog-faq-section {
            background-color: var(--vet-dog-white);
            padding: 80px 0;
        }

        .vet-dog-faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .vet-dog-faq-item {
            background-color: var(--vet-dog-light-gray);
            margin-bottom: 20px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 10px var(--vet-dog-shadow);
        }

        .vet-dog-faq-question {
            padding: 25px 30px;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: var(--vet-dog-dark);
            transition: background-color 0.3s ease;
        }

        .vet-dog-faq-question:hover {
            background-color: #e8e8ed;
        }

        .vet-dog-faq-icon {
            font-size: 24px;
            transition: transform 0.3s ease;
        }

        .vet-dog-faq-answer {
            padding: 0 30px 25px;
            color: var(--vet-dog-gray);
            line-height: 1.8;
            font-size: 16px;
        }

        /* Reviews Section */
        .vet-dog-reviews-section {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            padding: 80px 0;
            color: var(--vet-dog-white);
        }

        .vet-dog-reviews-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .vet-dog-review-card {
            background-color: rgba(255, 255, 255, 0.95);
            padding: 35px;
            border-radius: 16px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
        }

        .vet-dog-review-stars {
            color: #ffd700;
            font-size: 20px;
            margin-bottom: 15px;
        }

        .vet-dog-review-text {
            color: var(--vet-dog-dark);
            line-height: 1.8;
            margin-bottom: 20px;
            font-size: 16px;
        }

        .vet-dog-review-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .vet-dog-review-avatar {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--vet-dog-primary), var(--vet-dog-accent));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--vet-dog-white);
            font-size: 20px;
            font-weight: bold;
        }

        .vet-dog-review-info h4 {
            font-size: 16px;
            color: var(--vet-dog-dark);
            margin-bottom: 3px;
        }

        .vet-dog-review-info p {
            font-size: 14px;
            color: var(--vet-dog-gray);
        }

        /* Pricing Section */
        .vet-dog-pricing-section {
            background-color: var(--vet-dog-light-gray);
            padding: 80px 0;
        }

        .vet-dog-pricing-card {
            background-color: var(--vet-dog-white);
            max-width: 600px;
            margin: 50px auto 0;
            padding: 50px;
            border-radius: 20px;
            box-shadow: 0 10px 40px var(--vet-dog-shadow);
            text-align: center;
        }

        .vet-dog-price {
            font-size: 64px;
            font-weight: 700;
            color: var(--vet-dog-primary);
            margin-bottom: 10px;
        }

        .vet-dog-price-currency {
            font-size: 32px;
            vertical-align: super;
        }

        .vet-dog-price-description {
            font-size: 18px;
            color: var(--vet-dog-gray);
            margin-bottom: 40px;
        }

        .vet-dog-price-features {
            list-style: none;
            margin-bottom: 40px;
            text-align: left;
        }

        .vet-dog-price-features li {
            padding: 15px 0;
            padding-left: 35px;
            position: relative;
            color: var(--vet-dog-dark);
            font-size: 16px;
            border-bottom: 1px solid var(--vet-dog-light-gray);
        }

        .vet-dog-price-features li:last-child {
            border-bottom: none;
        }

        .vet-dog-price-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--vet-dog-success);
            font-weight: bold;
            font-size: 20px;
        }

        /* Contact Section */
        .vet-dog-contact-section {
            background-color: var(--vet-dog-dark);
            color: var(--vet-dog-white);
            padding: 80px 0;
        }

        .vet-dog-contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
            margin-top: 50px;
        }

        .vet-dog-contact-card {
            text-align: center;
            padding: 30px;
            background-color: rgba(255, 255, 255, 0.05);
            border-radius: 16px;
            transition: transform 0.3s ease, background-color 0.3s ease;
        }

        .vet-dog-contact-card:hover {
            transform: translateY(-5px);
            background-color: rgba(255, 255, 255, 0.1);
        }

        .vet-dog-contact-icon {
            font-size: 48px;
            margin-bottom: 20px;
            display: block;
        }

        .vet-dog-contact-card h3 {
            font-size: 20px;
            margin-bottom: 15px;
        }

        .vet-dog-contact-card p {
            font-size: 16px;
            line-height: 1.8;
            opacity: 0.9;
        }

        .vet-dog-contact-link {
            display: inline-block;
            margin-top: 15px;
            color: var(--vet-dog-primary);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .vet-dog-contact-link:hover {
            color: var(--vet-dog-whatsapp);
        }

        /* Map Section */
        .vet-dog-map-section {
            padding: 0;
            height: 450px;
            background-color: var(--vet-dog-light-gray);
            position: relative;
        }

        .vet-dog-map-placeholder {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--vet-dog-white);
            font-size: 24px;
        }

        /* Footer */
        .vet-dog-footer {
            background-color: var(--vet-dog-dark);
            color: var(--vet-dog-white);
            padding: 60px 0 30px;
        }

        .vet-dog-footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .vet-dog-footer-section h3 {
            font-size: 18px;
            margin-bottom: 20px;
            color: var(--vet-dog-white);
        }

        .vet-dog-footer-links {
            list-style: none;
        }

        .vet-dog-footer-links li {
            margin-bottom: 12px;
        }

        .vet-dog-footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: 14px;
        }

        .vet-dog-footer-links a:hover {
            color: var(--vet-dog-primary);
        }

        .vet-dog-footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 30px;
            text-align: center;
            color: rgba(255, 255, 255, 0.6);
            font-size: 14px;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .vet-dog-hero h1 {
                font-size: 36px;
            }

            .vet-dog-hero-subtitle {
                font-size: 20px;
            }

            .vet-dog-hero-description {
                font-size: 16px;
            }

            .vet-dog-section-title {
                font-size: 32px;
            }

            .vet-dog-section-subtitle {
                font-size: 18px;
            }

            .vet-dog-nav-links {
                display: none;
            }

            .vet-dog-symptoms-grid,
            .vet-dog-causes-grid,
            .vet-dog-training-grid {
                grid-template-columns: 1fr;
            }

            .vet-dog-environment-grid {
                grid-template-columns: 1fr;
            }

            .vet-dog-timeline::before {
                left: 30px;
            }

            .vet-dog-timeline-content {
                width: calc(100% - 80px);
                margin-left: 80px !important;
            }

            .vet-dog-timeline-dot {
                left: 30px;
            }

            .vet-dog-cta-buttons {
                flex-direction: column;
                align-items: stretch;
            }

            .vet-dog-btn {
                width: 100%;
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .vet-dog-hero h1 {
                font-size: 28px;
            }

            .vet-dog-price {
                font-size: 48px;
            }

            .vet-dog-pricing-card {
                padding: 30px 20px;
            }
        }

        /* Animations */
        @keyframes vet-dog-fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .vet-dog-fade-in {
            animation: vet-dog-fadeInUp 0.6s ease-out;
        }

        /* Utilities */
        .vet-dog-text-center {
            text-align: center;
        }

        .vet-dog-mt-20 {
            margin-top: 20px;
        }

        .vet-dog-mt-40 {
            margin-top: 40px;
        }

        .vet-dog-mb-20 {
            margin-bottom: 20px;
        }

        .vet-dog-mb-40 {
            margin-bottom: 40px;
        }
    