
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .dog-vomit-body {
            font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.6;
            color: #1f2937;
            background: #ffffff;
        }

        .dog-vomit-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Hero Section */
        .dog-vomit-hero {
            background: linear-gradient(180deg, #dbeafe 0%, #ffffff 100%);
            padding: 80px 20px;
            text-align: center;
        }

        .dog-vomit-hero-image {
            max-width: 600px;
            margin: 0 auto 30px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .dog-vomit-hero-image img {
            width: 100%;
            height: auto;
            display: block;
        }

        .dog-vomit-hero h1 {
            font-size: 48px;
            font-weight: 700;
            background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 20px;
            letter-spacing: -0.02em;
        }

        .dog-vomit-hero .dog-vomit-subtitle {
            font-size: 20px;
            color: #4b5563;
            margin-bottom: 30px;
            font-weight: 500;
        }

        .dog-vomit-hero-cta {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .dog-vomit-btn-primary,
        .dog-vomit-btn-phone {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 16px 40px;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 600;
            font-size: 18px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }

        .dog-vomit-btn-primary {
            background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
            color: white;
        }

        .dog-vomit-btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(59, 130, 246, 0.4);
        }

        .dog-vomit-btn-phone {
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            color: white;
        }

        .dog-vomit-btn-phone:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(16, 185, 129, 0.4);
        }

        /* Section Styles */
        .dog-vomit-section {
            padding: 80px 20px;
        }

        .dog-vomit-section-title {
            font-size: 36px;
            font-weight: 700;
            color: #1e40af;
            text-align: center;
            margin-bottom: 20px;
            letter-spacing: -0.01em;
        }

        .dog-vomit-section-intro {
            font-size: 18px;
            color: #6b7280;
            text-align: center;
            max-width: 800px;
            margin: 0 auto 60px;
            line-height: 1.8;
        }

        /* Intro Box */
        .dog-vomit-intro {
            background: #f9fafb;
            padding: 40px;
            border-radius: 16px;
            max-width: 900px;
            margin: 0 auto;
        }

        .dog-vomit-intro h3 {
            color: #1e40af;
            font-size: 24px;
            margin-bottom: 20px;
            font-weight: 600;
        }

        .dog-vomit-intro p {
            font-size: 17px;
            line-height: 1.8;
            color: #374151;
            margin-bottom: 15px;
        }

        /* Color Cards */
        .dog-vomit-color-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 25px;
            margin-top: 40px;
        }

        .dog-vomit-color-card {
            background: white;
            border-left: 5px solid #3b82f6;
            border-radius: 12px;
            padding: 25px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }

        .dog-vomit-color-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
        }

        .dog-vomit-color-card.highlight {
            background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
            border-left-color: #f59e0b;
        }

        .dog-vomit-color-card.warning {
            background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
            border-left-color: #ef4444;
        }

        .dog-vomit-color-card.danger {
            background: linear-gradient(135deg, #fee2e2 0%, #fca5a5 100%);
            border-left-color: #dc2626;
        }

        .dog-vomit-color-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 15px;
        }

        .dog-vomit-color-icon {
            font-size: 36px;
        }

        .dog-vomit-color-card h4 {
            font-size: 22px;
            color: #1e40af;
            font-weight: 600;
        }

        .dog-vomit-color-card.warning h4,
        .dog-vomit-color-card.danger h4 {
            color: #dc2626;
        }

        .dog-vomit-severity {
            display: inline-block;
            padding: 6px 14px;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 600;
            margin-top: 10px;
        }

        .dog-vomit-severity.mild {
            background: #dbeafe;
            color: #1e40af;
        }

        .dog-vomit-severity.moderate {
            background: #fef3c7;
            color: #d97706;
        }

        .dog-vomit-severity.severe {
            background: #fee2e2;
            color: #dc2626;
        }

        .dog-vomit-severity.emergency {
            background: #dc2626;
            color: white;
        }

        .dog-vomit-color-card p {
            color: #4b5563;
            font-size: 16px;
            line-height: 1.7;
            margin: 10px 0;
        }

        .dog-vomit-color-card strong {
            color: #1f2937;
        }

        /* Causes Grid */
        .dog-vomit-causes-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin-top: 40px;
        }

        .dog-vomit-cause-card {
            background: white;
            border: 2px solid #e5e7eb;
            border-radius: 12px;
            padding: 30px;
            transition: all 0.3s ease;
        }

        .dog-vomit-cause-card:hover {
            border-color: #3b82f6;
            box-shadow: 0 8px 16px rgba(59, 130, 246, 0.1);
        }

        .dog-vomit-cause-number {
            display: inline-block;
            width: 40px;
            height: 40px;
            background: #3b82f6;
            color: white;
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            font-weight: 700;
            margin-bottom: 15px;
            font-size: 18px;
        }

        .dog-vomit-cause-card h4 {
            color: #1e40af;
            font-size: 20px;
            margin-bottom: 12px;
            font-weight: 600;
        }

        .dog-vomit-cause-card p {
            color: #6b7280;
            font-size: 15px;
            line-height: 1.7;
        }

        /* Emergency Section */
        .dog-vomit-emergency {
            background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
            border: 3px solid #ef4444;
            border-radius: 16px;
            padding: 40px;
            margin: 60px auto;
            max-width: 900px;
        }

        .dog-vomit-emergency h3 {
            color: #dc2626;
            font-size: 28px;
            margin-bottom: 25px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .dog-vomit-emergency-list {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 15px;
            margin-bottom: 25px;
        }

        .dog-vomit-emergency-list li {
            background: white;
            padding: 16px;
            border-radius: 10px;
            color: #991b1b;
            font-weight: 500;
            font-size: 16px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .dog-vomit-emergency-list li:before {
            content: "⚠️";
            font-size: 20px;
            flex-shrink: 0;
        }

        .dog-vomit-emergency-phone {
            background: #dc2626;
            color: white;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            font-size: 20px;
            font-weight: 700;
        }

        /* Steps Section */
        .dog-vomit-steps {
            max-width: 900px;
            margin: 40px auto;
        }

        .dog-vomit-step {
            background: white;
            border-left: 5px solid #3b82f6;
            border-radius: 12px;
            padding: 30px;
            margin-bottom: 20px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        }

        .dog-vomit-step-number {
            display: inline-block;
            width: 48px;
            height: 48px;
            background: #3b82f6;
            color: white;
            border-radius: 50%;
            text-align: center;
            line-height: 48px;
            font-weight: 700;
            font-size: 24px;
            margin-bottom: 15px;
        }

        .dog-vomit-step h4 {
            color: #1e40af;
            font-size: 22px;
            margin-bottom: 12px;
            font-weight: 600;
        }

        .dog-vomit-step p,
        .dog-vomit-step ul {
            color: #4b5563;
            font-size: 16px;
            line-height: 1.7;
        }

        .dog-vomit-step ul {
            list-style: none;
            margin-top: 12px;
        }

        .dog-vomit-step ul li {
            padding: 8px 0 8px 25px;
            position: relative;
        }

        .dog-vomit-step ul li:before {
            content: "•";
            position: absolute;
            left: 10px;
            color: #3b82f6;
            font-weight: 700;
        }

        .dog-vomit-step-warning {
            background: #fef3c7;
            border: 2px solid #f59e0b;
            padding: 15px 20px;
            border-radius: 10px;
            margin-top: 15px;
            color: #92400e;
            font-weight: 600;
        }

        /* Treatment Box */
        .dog-vomit-treatment {
            background: #f0f9ff;
            padding: 50px;
            border-radius: 16px;
            max-width: 900px;
            margin: 40px auto;
        }

        .dog-vomit-treatment h3 {
            color: #1e40af;
            font-size: 26px;
            margin-bottom: 25px;
            font-weight: 700;
        }

        .dog-vomit-treatment h4 {
            color: #1e40af;
            font-size: 20px;
            margin: 25px 0 15px;
            font-weight: 600;
        }

        .dog-vomit-treatment p {
            color: #374151;
            font-size: 16px;
            line-height: 1.8;
            margin-bottom: 15px;
        }

        .dog-vomit-treatment ul {
            list-style: none;
            margin: 15px 0;
        }

        .dog-vomit-treatment ul li {
            color: #4b5563;
            font-size: 16px;
            padding: 10px 0 10px 30px;
            position: relative;
        }

        .dog-vomit-treatment ul li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #3b82f6;
            font-weight: 700;
            font-size: 20px;
        }

        .dog-vomit-service-box {
            background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
            color: white;
            padding: 30px;
            border-radius: 12px;
            margin-top: 30px;
        }

        .dog-vomit-service-box h4 {
            color: white;
            font-size: 22px;
            margin-bottom: 15px;
        }

        .dog-vomit-service-box p {
            color: white;
            opacity: 0.95;
            margin-bottom: 10px;
        }

        .dog-vomit-price-row {
            display: flex;
            justify-content: space-around;
            margin-top: 20px;
            flex-wrap: wrap;
            gap: 20px;
        }

        .dog-vomit-price-item {
            background: rgba(255, 255, 255, 0.2);
            padding: 15px 25px;
            border-radius: 10px;
            text-align: center;
        }

        .dog-vomit-price-item span:first-child {
            display: block;
            font-size: 14px;
            opacity: 0.9;
            margin-bottom: 5px;
        }

        .dog-vomit-price-item span:last-child {
            display: block;
            font-size: 28px;
            font-weight: 700;
        }

        /* Prevention Grid */
        .dog-vomit-prevention-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin-top: 40px;
        }

        .dog-vomit-prevention-card {
            background: white;
            border: 2px solid #e5e7eb;
            border-radius: 12px;
            padding: 30px;
            transition: all 0.3s ease;
        }

        .dog-vomit-prevention-card:hover {
            border-color: #3b82f6;
            transform: translateY(-2px);
            box-shadow: 0 8px 16px rgba(59, 130, 246, 0.1);
        }

        .dog-vomit-prevention-icon {
            font-size: 40px;
            margin-bottom: 15px;
        }

        .dog-vomit-prevention-card h4 {
            color: #1e40af;
            font-size: 20px;
            margin-bottom: 12px;
            font-weight: 600;
        }

        .dog-vomit-prevention-card p {
            color: #6b7280;
            font-size: 15px;
            line-height: 1.7;
        }

        /* FAQ Section */
        .dog-vomit-faq {
            max-width: 900px;
            margin: 40px auto;
        }

        .dog-vomit-faq-item {
            background: white;
            border: 2px solid #e5e7eb;
            border-radius: 12px;
            padding: 30px;
            margin-bottom: 20px;
            transition: all 0.3s ease;
        }

        .dog-vomit-faq-item:hover {
            border-color: #3b82f6;
            box-shadow: 0 4px 12px rgba(59, 130, 246, 0.1);
        }

        .dog-vomit-faq-item h4 {
            color: #1e40af;
            font-size: 20px;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .dog-vomit-faq-item p {
            color: #4b5563;
            font-size: 16px;
            line-height: 1.8;
            margin-bottom: 10px;
        }

        .dog-vomit-faq-cta {
            display: flex;
            gap: 15px;
            margin-top: 15px;
            flex-wrap: wrap;
        }

        .dog-vomit-faq-phone {
            color: #10b981;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }

        .dog-vomit-faq-phone:hover {
            color: #059669;
            text-decoration: underline;
        }

        /* Final CTA */
        .dog-vomit-final-cta {
            background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
            color: white;
            padding: 80px 20px;
            text-align: center;
            margin-top: 80px;
        }

        .dog-vomit-final-cta h2 {
            font-size: 40px;
            margin-bottom: 15px;
            font-weight: 700;
        }

        .dog-vomit-final-cta p {
            font-size: 22px;
            margin-bottom: 40px;
            opacity: 0.95;
        }

        .dog-vomit-final-cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .dog-vomit-btn-white {
            background: white;
            color: #1e40af;
            padding: 16px 40px;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 600;
            font-size: 18px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }

        .dog-vomit-btn-white:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
        }

        .dog-vomit-btn-green {
            background: #10b981;
            color: white;
            padding: 16px 40px;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 600;
            font-size: 18px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
        }

        .dog-vomit-btn-green:hover {
            background: #059669;
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(16, 185, 129, 0.4);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .dog-vomit-hero h1 {
                font-size: 32px;
            }

            .dog-vomit-hero .dog-vomit-subtitle {
                font-size: 18px;
            }

            .dog-vomit-section-title {
                font-size: 28px;
            }

            .dog-vomit-color-grid,
            .dog-vomit-causes-grid,
            .dog-vomit-prevention-grid {
                grid-template-columns: 1fr;
            }

            .dog-vomit-emergency-list {
                grid-template-columns: 1fr;
            }

            .dog-vomit-hero-cta,
            .dog-vomit-final-cta-buttons {
                flex-direction: column;
            }

            .dog-vomit-btn-primary,
            .dog-vomit-btn-phone,
            .dog-vomit-btn-white,
            .dog-vomit-btn-green {
                width: 100%;
                justify-content: center;
            }
        }
    