
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f8f9fa;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            background-color: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .header {
            text-align: center;
            padding: 40px 0;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            margin-bottom: 40px;
            border-radius: 10px;
        }
        
        .header h1 {
            font-size: 2.5em;
            margin-bottom: 10px;
            font-weight: 700;
        }
        
        .header .subtitle {
            font-size: 1.2em;
            opacity: 0.9;
            margin-bottom: 20px;
        }
        
        .emergency-alert {
            background: linear-gradient(45deg, #ff6b6b, #ee5a24);
            color: white;
            padding: 20px;
            border-radius: 10px;
            margin: 30px 0;
            text-align: center;
            font-weight: bold;
            font-size: 1.1em;
            box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
        }
        
        .section {
            margin: 40px 0;
            padding: 30px;
            border-radius: 10px;
            background: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }
        
        .section h2 {
            color: #2c3e50;
            font-size: 1.8em;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 3px solid #3498db;
        }
        
        .section h3 {
            color: #34495e;
            font-size: 1.4em;
            margin: 25px 0 15px 0;
            display: flex;
            align-items: center;
        }
        
        .section h3:before {
            content: "🔹";
            margin-right: 10px;
        }
        
        .breed-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin: 20px 0;
        }
        
        .breed-card {
            background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
            color: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(79, 172, 254, 0.3);
        }
        
        .breed-card h4 {
            font-size: 1.2em;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }
        
        .breed-card.high-risk {
            background: linear-gradient(135deg, #ff6b6b, #ee5a24);
        }
        
        .breed-card.medium-risk {
            background: linear-gradient(135deg, #ffa726, #fb8c00);
        }
        
        .breed-card.special-risk {
            background: linear-gradient(135deg, #ab47bc, #8e24aa);
        }
        
        .treatment-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        
        .treatment-step {
            background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
            color: white;
            padding: 25px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 8px 25px rgba(79, 172, 254, 0.3);
            position: relative;
        }
        
        .treatment-step .step-number {
            font-size: 2em;
            font-weight: bold;
            margin-bottom: 15px;
            display: block;
        }
        
        .treatment-step h4 {
            font-size: 1.2em;
            margin-bottom: 15px;
        }
        
        .cost-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }
        
        .cost-table th {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 15px;
            text-align: left;
            font-weight: 600;
        }
        
        .cost-table td {
            padding: 12px 15px;
            border-bottom: 1px solid #eee;
        }
        
        .cost-table tr:nth-child(even) {
            background-color: #f8f9fa;
        }
        
        .cost-table tr:hover {
            background-color: #e3f2fd;
        }
        
        .faq-container {
            margin: 40px 0;
        }
        
        .faq-item {
            margin-bottom: 15px;
            border: 1px solid #ddd;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        
        .faq-question {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 20px;
            cursor: pointer;
            font-weight: 600;
            font-size: 1.1em;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }
        
        .faq-question:hover {
            background: linear-gradient(135deg, #5a67d8 0%, #667eea 100%);
        }
        
        .faq-question:after {
            content: "+";
            font-size: 1.5em;
            font-weight: bold;
            transition: transform 0.3s ease;
        }
        
        .faq-question.active:after {
            transform: rotate(45deg);
        }
        
        .faq-answer {
            padding: 0;
            max-height: 0;
            overflow: hidden;
            background: white;
            transition: all 0.3s ease;
        }
        
        .faq-answer.active {
            padding: 20px;
            max-height: 1000px;
        }
        
        .contact-section {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 40px;
            border-radius: 15px;
            text-align: center;
            margin: 40px 0;
        }
        
        .contact-section h2 {
            color: white;
            border-bottom: none;
            margin-bottom: 30px;
        }
        
        .contact-info {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin: 30px 0;
        }
        
        .contact-item {
            background: rgba(255,255,255,0.1);
            padding: 20px;
            border-radius: 10px;
            backdrop-filter: blur(10px);
        }
        
        .contact-item h3 {
            color: white;
            margin-bottom: 15px;
        }
        
        .contact-item h3:before {
            content: none;
        }
        
        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
            margin: 30px 0;
        }
        
        .cta-button {
            display: inline-block;
            padding: 15px 30px;
            background: linear-gradient(45deg, #00ff88, #00cc69);
            color: white;
            text-decoration: none;
            border-radius: 25px;
            font-weight: bold;
            font-size: 1.1em;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3);
        }
        
        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 255, 136, 0.4);
        }
        
        .cta-button.phone {
            background: linear-gradient(45deg, #ff6b6b, #ee5a24);
            box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
        }
        
        .cta-button.phone:hover {
            box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
        }
        
        .highlight-box {
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            color: white;
            padding: 25px;
            border-radius: 15px;
            margin: 25px 0;
            box-shadow: 0 8px 25px rgba(240, 147, 251, 0.3);
        }
        
        .highlight-box h3 {
            color: white;
            margin-bottom: 15px;
        }
        
        .highlight-box h3:before {
            content: "💡";
        }
        
        .icon-list {
            list-style: none;
            padding: 0;
        }
        
        .icon-list li {
            padding: 8px 0;
            padding-left: 30px;
            position: relative;
        }
        
        .icon-list li:before {
            position: absolute;
            left: 0;
            font-size: 1.2em;
        }
        
        .icon-list.risk li:before { content: "⚠️"; }
        .icon-list.treatment li:before { content: "⚕️"; }
        .icon-list.features li:before { content: "✅"; }
        
        @media (max-width: 768px) {
            .container {
                padding: 10px;
            }
            
            .header h1 {
                font-size: 1.8em;
            }
            
            .header .subtitle {
                font-size: 1em;
            }
            
            .section {
                padding: 20px;
            }
            
            .section h2 {
                font-size: 1.5em;
            }
            
            .treatment-steps {
                grid-template-columns: 1fr;
            }
            
            .breed-grid {
                grid-template-columns: 1fr;
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .contact-info {
                grid-template-columns: 1fr;
            }
        }
    