* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --border-color: #e5e7eb;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.nav-brand h1 {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.btn-call {
    background: var(--primary-color);
    color: white !important;
    padding: 0.5rem 1.5rem;
    border-radius: 6px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: 0.3s;
}

/* Lead Gen Disclaimer */
.lead-gen-disclaimer {
    background: #f3f4f6;
    border-top: 2px solid #e5e7eb;
    padding: 20px;
    text-align: center;
    font-size: 0.9rem;
    color: #6b7280;
    margin-top: 40px;
}

.lead-gen-disclaimer strong {
    color: var(--text-dark);
}

/* Enhanced Trust Badges for Lead Gen */
.trust-badges-enhanced {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin: 30px 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.trust-badges-enhanced span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 600;
}

/* Call Tracking Number Highlight */
.tracking-number {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 700;
}

/* Sticky Mobile Call Button (Lead Gen) */
.sticky-call-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    display: none;
}

.sticky-call-button a {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #dc2626;
    color: white;
    padding: 16px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.4);
    animation: pulse-button 2s infinite;
}

.sticky-call-button a:hover {
    background: #b91c1c;
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(220, 38, 38, 0.6);
}

@keyframes pulse-button {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(220, 38, 38, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(220, 38, 38, 0.7);
    }
}

@media (max-width: 768px) {
    .sticky-call-button {
        display: block;
        bottom: 15px;
        right: 15px;
        left: 15px;
    }
    
    .sticky-call-button a {
        width: 100%;
        justify-content: center;
        font-size: 1.05rem;
        padding: 18px 20px;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 80px 0;
    text-align: center;
}

/* Urgency & Scarcity Messaging (Lead Gen) */
.urgency-message {
    background: #fef3c7;
    border-left: 4px solid #f59e0b;
    padding: 12px 20px;
    margin: 20px 0;
    border-radius: 4px;
    font-weight: 600;
    color: #92400e;
    display: inline-block;
}

.urgency-message.high-urgency {
    background: #fee2e2;
    border-left-color: #dc2626;
    color: #7f1d1d;
    animation: urgency-pulse 1.5s infinite;
}

@keyframes urgency-pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.85;
    }
}

.availability-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #10b981;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin: 10px 0;
}

.availability-badge::before {
    content: "●";
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.trust-badges {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.trust-badges span {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary {
    background: white;
    color: var(--primary-color);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-color);
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* Services */
.services, .why-choose, .service-area, .content-section {
    padding: 60px 0;
}

.services h2, .why-choose h2, .service-area h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature {
    text-align: center;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature h3 {
    margin-bottom: 0.5rem;
}

/* CTA Section */
.cta-section {
    background: var(--bg-light);
    padding: 60px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* Contact */
.page-header {
    background: var(--primary-color);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
}

/* Form */
.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Content Layout */
.content-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.main-content h2, .main-content h3 {
    margin: 2rem 0 1rem;
}

.main-content ul, .main-content ol {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.main-content li {
    margin-bottom: 0.5rem;
}

/* CTA Box - Primary Styling */
.cta-box {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    padding: 2.5rem;
    margin: 3rem 0;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #f59e0b, var(--primary-color));
}

.cta-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.cta-box h3 {
    color: var(--text-dark);
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.cta-box p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.cta-box .btn {
    margin: 0.5rem;
    min-width: 200px;
    padding: 12px 24px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-note {
    font-size: 0.9rem !important;
    color: #059669 !important;
    font-weight: 600 !important;
    margin-top: 1rem !important;
    margin-bottom: 0 !important;
}

.sidebar-widget {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.sidebar-widget h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.sidebar-widget ul {
    list-style: none;
}

.sidebar-widget li {
    margin-bottom: 0.5rem;
}

.sidebar-widget a {
    color: var(--text-dark);
    text-decoration: none;
}

.sidebar-widget a:hover {
    color: var(--primary-color);
}

/* Footer */
footer {
    background: linear-gradient(135deg, #1f2937, #111827);
    color: white;
    padding: 50px 0 20px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), #f59e0b, var(--primary-color));
}

.footer-content,
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column,
.footer-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.footer-column:hover,
.footer-section:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.footer-column h3,
.footer-section h3 {
    color: #fbbf24;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-column h3::after,
.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 2px;
}

.footer-column ul,
.footer-section ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-column li,
.footer-section li {
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 1.2rem;
}

.footer-column li::before,
.footer-section li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.footer-column li:hover::before,
.footer-section li:hover::before {
    transform: translateX(3px);
}

.footer-column a,
.footer-section a {
    color: #e5e7eb;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.footer-column a:hover,
.footer-section a:hover {
    color: #fbbf24;
    padding-left: 5px;
}

.footer-column p,
.footer-section p {
    color: #d1d5db;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-column strong,
.footer-section strong {
    color: white;
    font-weight: 700;
}

.license-info {
    font-size: 0.9rem;
    color: #9ca3af !important;
    font-style: italic;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom {
    border-top: 2px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    text-align: center;
    background: rgba(0, 0, 0, 0.2);
    margin: 0 -50px -20px -50px;
    padding-left: 50px;
    padding-right: 50px;
}

.footer-bottom p {
    color: #d1d5db;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

/* Blog Footer Specific */
.post-footer {
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Breadcrumb Navigation */
.breadcrumbs {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 0.9rem;
}

.breadcrumbs .container {
    display: flex;
    align-items: center;
}

.breadcrumbs a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.breadcrumbs a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.breadcrumbs span {
    color: var(--text-light);
    font-weight: 600;
}

.breadcrumbs .container > * {
    margin-right: 0.5rem;
}

/* Emergency & Special Sections */
.emergency-hero {
    background: linear-gradient(135deg, #dc2626, #991b1b);
}

.emergency-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    border: 2px solid rgba(255,255,255,0.3);
}

.nav-tagline {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 0.25rem;
}

.hero-problems {
    margin-top: 2rem;
    opacity: 0.95;
}

.hero-problems p {
    margin-bottom: 0.5rem;
}

.page-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Emergency Services Section */
.emergency-services {
    background: var(--bg-light);
    padding: 60px 0;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.section-header h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.emergency-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.emergency-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.emergency-card.urgent {
    border: 2px solid #dc2626;
    box-shadow: 0 4px 16px rgba(220,38,38,0.2);
}

.emergency-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-features {
    list-style: none;
    margin-left: 0;
}

.service-features li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
}

.service-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

/* Emergency Header */
.emergency-header {
    background: linear-gradient(135deg, #dc2626, #991b1b);
}

.emergency-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    text-align: center;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat strong {
    font-size: 1.5rem;
    display: block;
    margin-bottom: 0.25rem;
}

.stat span {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Problem Cards & Grids */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.problem-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-left: 4px solid var(--primary-color);
}

.problem-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.problem-card ul {
    list-style-position: inside;
    margin-left: 0;
}

/* Process List */
.process-list {
    counter-reset: process-counter;
    list-style: none;
    margin-left: 0;
}

.process-list > li {
    counter-increment: process-counter;
    margin-bottom: 2rem;
    padding-left: 3rem;
    position: relative;
}

.process-list > li:before {
    content: counter(process-counter);
    position: absolute;
    left: 0;
    top: 0;
    background: var(--primary-color);
    color: white;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.process-list li ul {
    margin-top: 0.5rem;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.benefit-item {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
}

.benefit-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

/* Pricing Table */
.pricing-table {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin: 2rem 0;
}

.pricing-table h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.pricing-table ul {
    list-style: none;
    margin-left: 0;
}

.pricing-table li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
}

.pricing-table li:last-child {
    border-bottom: none;
}

/* Service Areas */
.service-areas {
    columns: 2;
    column-gap: 2rem;
    list-style-position: inside;
}

/* FAQ Section - Modern Accordion */
.faq-section {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    padding: 4rem 0;
    position: relative;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), #f59e0b, var(--primary-color));
}

.faq-section h2 {
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 3rem;
    font-size: 2.2rem;
    font-weight: 700;
}

/* FAQ Grid and Legacy Support */
.faq-grid,
.faq-accordion,
.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 1.5rem;
}

/* Modern FAQ Accordion Items */
.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

/* FAQ Question Header */
.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.faq-question h3 {
    color: var(--text-dark);
    font-size: 1.15rem;
    font-weight: 600;
    margin: 0;
    padding-right: 1rem;
    line-height: 1.4;
}

.faq-toggle {
    background: var(--primary-color);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-toggle {
    background: #dc2626;
    transform: rotate(45deg);
}

/* FAQ Answer Content */
.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    background: white;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
    padding-top: 1rem;
}

.faq-answer ul {
    margin: 1rem 0 0 0;
    padding-left: 1.5rem;
    color: var(--text-light);
}

.faq-answer li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

/* Legacy FAQ Support (Non-Accordion) */
.faq-grid .faq-item {
    padding: 1.5rem;
}

.faq-grid .faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.faq-grid .faq-item p {
    margin-bottom: 0.5rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* FAQ Schema Support */
.faq-schema .faq-item {
    margin-bottom: 1.5rem;
}

.faq-schema .faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

/* Emergency Situations */
.emergency-situations {
    margin: 2rem 0;
}

.emergency-item {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-left: 4px solid #dc2626;
}

.emergency-item h3 {
    color: #dc2626;
    margin-bottom: 1rem;
}

.emergency-cta-box {
    background: linear-gradient(135deg, #dc2626, #991b1b);
    color: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    margin: 2rem 0;
}

.emergency-cta-box h3 {
    color: white;
    margin-bottom: 1rem;
}

.emergency-cta-box .btn-primary {
    background: white;
    color: #dc2626;
}

/* Final CTA - Enhanced Visibility */
.final-cta {
    background: linear-gradient(135deg, var(--primary-color), #1e40af, var(--secondary-color)) !important;
    border: 3px solid #fbbf24 !important;
    color: white !important;
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.3) !important;
    position: relative;
    z-index: 10;
}

.final-cta::before {
    background: linear-gradient(90deg, #fbbf24, #f59e0b, #fbbf24) !important;
}

.final-cta h3 {
    color: white !important;
    font-size: 2rem !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
}

.final-cta p {
    color: #e5e7eb !important;
    font-size: 1.15rem !important;
}

.final-cta .btn {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
}

.final-cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3) !important;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 2rem 0;
    position: relative;
    z-index: 5;
}

.cta-buttons .btn {
    min-width: 220px;
    padding: 15px 25px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
}

.cta-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.cta-buttons .btn-primary {
    background: linear-gradient(135deg, var(--primary-color), #1e40af);
    color: white;
    border-color: rgba(255, 255, 255, 0.2);
}

.cta-buttons .btn-secondary {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    border-color: rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

.cta-note {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 1rem;
}

/* Sidebar Enhancements */
.emergency-widget {
    background: linear-gradient(135deg, #dc2626, #991b1b);
    color: white;
}

.emergency-widget h3 {
    color: white;
}

.emergency-widget p {
    color: rgba(255,255,255,0.9);
}

.emergency-widget .btn-primary {
    background: white;
    color: #dc2626;
    width: 100%;
}

.check-list {
    list-style: none;
}

.check-list li {
    padding-left: 1.5rem;
    position: relative;
}

.check-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.small-text {
    font-size: 0.85rem;
    opacity: 0.9;
}

.btn-block {
    width: 100%;
    text-align: center;
}

.license-info {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-top: 0.5rem;
}

/* Additional Utilities */
.active {
    color: var(--primary-color) !important;
    font-weight: 600;
}

/* Button Emergency Variant */
.btn-emergency {
    background: #dc2626 !important;
    color: white !important;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(220, 38, 38, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(220, 38, 38, 0);
    }
}

/* Contact Section */
.contact-section {
    padding: 60px 0;
}

.contact-info {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        display: none;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .hero h1 {
        font-size: 1.75rem;
    }
    
    .contact-grid,
    .content-layout {
        grid-template-columns: 1fr;
    }
    
    .hero-cta,
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .emergency-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-areas {
        columns: 1;
    }
    
    .trust-badges {
        gap: 1rem;
        font-size: 0.85rem;
    }
    
    .problem-grid,
    .benefits-grid,
    .emergency-grid {
        grid-template-columns: 1fr;
    }
}

/* AC Replacement Page Styles */
.system-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.system-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.system-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
    transform: translateY(-2px);
}

.system-card.featured {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
}

.system-card .badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.system-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.system-card h4 {
    color: var(--text-dark);
    margin: 1rem 0 0.5rem;
    font-size: 0.9rem;
}

.system-card ul {
    list-style: none;
    padding: 0;
}

.system-card li {
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.system-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.signs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.sign-item {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.sign-item h3 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.seer-guide {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.seer-level {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
}

.seer-level h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.seer-level.premium {
    border-color: #059669;
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
}

.seer-level.premium h4 {
    color: #059669;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.process-steps .step {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.process-steps .step h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.highlight-box {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border: 2px solid #f59e0b;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
}

.highlight-box h3 {
    color: #d97706;
    margin-bottom: 1rem;
}

.highlight-box ul {
    list-style: none;
    padding: 0;
}

.highlight-box li {
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.highlight-box li:before {
    content: "💰";
    position: absolute;
    left: 0;
}

.cost-breakdown {
    margin: 2rem 0;
    overflow-x: auto;
}

.rebates-info {
    background: #ecfdf5;
    border: 2px solid #059669;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
}

.rebates-info h3 {
    color: #059669;
    margin-bottom: 1rem;
}

.rebates-info ul {
    list-style: none;
    padding: 0;
}

.rebates-info li {
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.rebates-info li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #059669;
    font-weight: bold;
}

.rebate-note {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    border-left: 4px solid #059669;
}

.financing-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.financing-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.financing-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* AC Maintenance Page Styles */
.value-prop {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
}

.value-prop h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.checklist-section {
    margin: 2rem 0;
}

.checklist-group {
    margin-bottom: 2rem;
}

.checklist-group h4 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.checklist {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0.5rem;
}

.checklist li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.checklist li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.plan-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.plan-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
    transform: translateY(-4px);
}

.plan-card.featured {
    border-color: var(--primary-color);
    border-width: 3px;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.plan-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.plan-price {
    margin: 1rem 0;
}

.plan-price .price {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.plan-price .period {
    font-size: 1rem;
    color: var(--text-light);
}

.plan-desc {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    text-align: left;
}

.plan-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.plan-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.timing-guide {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.timing-guide .season {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.timing-guide .season.warning {
    border-left-color: #ef4444;
    background: #fef2f2;
}

.timing-guide .season h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.timing-guide .season.warning h4 {
    color: #ef4444;
}

.diy-tips {
    margin: 2rem 0;
}

.diy-tips .tip {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.diy-tips .tip h4 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.diy-tips .tip.warning {
    border-color: #ef4444;
    background: #fef2f2;
}

.diy-tips .tip.warning h4 {
    color: #ef4444;
}

.warning-signs {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.warning-signs li {
    padding: 0.75rem;
    margin-bottom: 0.5rem;
    background: #fef2f2;
    border-left: 4px solid #ef4444;
    border-radius: 4px;
}

.faq-list {
    margin: 2rem 0;
}

.faq-list .faq-item {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.faq-list .faq-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.special-offer {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    margin: 1rem 0;
}

.special-offer h4 {
    font-size: 1.5rem;
    color: #d97706;
    margin-bottom: 0.5rem;
}

.special-offer .expires {
    font-size: 0.85rem;
    color: #92400e;
    margin-top: 0.5rem;
}

.expires {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Emergency AC Repair Page Styles */
.process-timeline {
    margin: 2rem 0;
}

.process-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.step-number {
    min-width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.process-step h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.why-emergency-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.why-item {
    background: white;
    border: 2px solid var(--border-color);
    padding: 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.why-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
}

.why-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.pricing-info {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
}

.pricing-info h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.pricing-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.pricing-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.pricing-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.pricing-note {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    margin-top: 1rem;
}

.service-areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.area-column {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
}

.area-column h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.area-column ul {
    list-style: none;
    padding: 0;
}

.area-column li {
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.area-column li:before {
    content: "📍";
    position: absolute;
    left: 0;
}

.prevention-tips {
    background: #ecfdf5;
    border: 2px solid #059669;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
}

.prevention-tips h3 {
    color: #059669;
    margin-bottom: 1rem;
}

.prevention-tips ul {
    list-style: none;
    padding: 0;
}

.prevention-tips li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.prevention-tips li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #059669;
    font-weight: bold;
}

.inline-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.inline-link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.emergency-number {
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    margin: 1rem 0;
}

.emergency-number a {
    color: var(--primary-color);
    text-decoration: none;
}

.emergency-number a:hover {
    color: var(--secondary-color);
}

.emergency-features {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.emergency-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-weight: 500;
}

.emergency-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.safety-warning {
    background: #fef2f2;
    border: 2px solid #ef4444;
    border-radius: 8px;
    padding: 1rem;
    margin: 1rem 0;
    display: flex;
    align-items: center;
}

.safety-warning strong {
    color: #ef4444;
}

/* Sidebar Enhancements */
.sidebar-widget.highlight {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border: 2px solid #f59e0b;
}

.sidebar-widget.highlight h3 {
    color: #d97706;
}

/* Additional responsive fixes */
@media (max-width: 768px) {
    .system-types,
    .signs-grid,
    .seer-guide,
    .process-steps,
    .plans-grid,
    .timing-guide,
    .why-emergency-grid,
    .service-areas-grid {
        grid-template-columns: 1fr;
    }
    
    .plan-price .price {
        font-size: 2rem;
    }
    
    .emergency-stats {
        grid-template-columns: 1fr;
    }
}

/* Blog Overview Page Styles */
.blog-overview {
    padding: 3rem 0;
    background: #f9fafb;
}

.blog-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.blog-intro h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.blog-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

.blog-category {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.blog-category h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    border-bottom: 3px solid var(--primary-color);
    padding-bottom: 0.5rem;
}

.category-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.blog-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--primary-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.blog-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.blog-card.featured {
    border-left: 4px solid #f59e0b;
    background: linear-gradient(135deg, #fffbeb, #fef3c7);
}

.blog-card.coming-soon {
    opacity: 0.7;
    border-left: 4px solid #9ca3af;
}

.blog-badge {
    display: inline-block;
    background: #f59e0b;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
    margin-bottom: 0.75rem;
}

.blog-badge.coming-soon-badge {
    background: #9ca3af;
}

.blog-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

.blog-card h3 a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card h3 a:hover {
    color: var(--primary-color);
}

.blog-excerpt {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.read-more {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: var(--secondary-color);
}

.blog-categories-sidebar {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.blog-categories-sidebar h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.categories-list {
    list-style: none;
}

.categories-list li {
    margin-bottom: 0.75rem;
}

.categories-list a {
    color: var(--text-dark);
    text-decoration: none;
    padding: 0.5rem;
    display: block;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.categories-list a:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

/* Blog Post Styles */
.blog-post {
    padding: 3rem 0;
    background: white;
}

.blog-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--border-color);
}

.blog-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    line-height: 1.2;
}

.blog-meta {
    color: var(--text-light);
    font-size: 0.95rem;
}

.blog-content {
    max-width: 800px;
    margin: 0 auto;
}

.blog-content h2 {
    font-size: 2rem;
    margin: 2rem 0 1rem;
    color: var(--text-dark);
}

.blog-content h3 {
    font-size: 1.5rem;
    margin: 1.5rem 0 0.75rem;
    color: var(--text-dark);
}

.blog-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.blog-content ul,
.blog-content ol {
    margin: 1rem 0 1rem 2rem;
    line-height: 1.8;
}

.blog-content li {
    margin-bottom: 0.5rem;
}

.blog-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

.blog-content a:hover {
    color: var(--secondary-color);
}

.quick-answer {
    background: #dbeafe;
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 4px;
}

.quick-answer h2 {
    font-size: 1.5rem;
    margin: 0 0 0.75rem 0;
    color: var(--primary-color);
}

/* Emergency CTA Variant */
.cta-box.emergency {
    background: linear-gradient(135deg, #fef2f2, #fee2e2) !important;
    border-color: #dc2626 !important;
    border-width: 3px !important;
}

.cta-box.emergency::before {
    background: linear-gradient(90deg, #dc2626, #ef4444, #dc2626) !important;
}

.cta-box.emergency h3 {
    color: #dc2626 !important;
}

.cta-box.emergency .btn {
    background: #dc2626 !important;
    border-color: #dc2626 !important;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.pricing-table thead {
    background: var(--primary-color);
    color: white;
}

.pricing-table th,
.pricing-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.pricing-table tbody tr:hover {
    background: var(--bg-light);
}

.related-articles {
    background: var(--bg-light);
    padding: 2rem;
    margin-top: 3rem;
    border-radius: 8px;
}

.related-articles h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.related-articles ul {
    list-style: none;
    margin: 0;
}

.related-articles li {
    margin-bottom: 0.75rem;
}

.related-articles a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.related-articles a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .blog-header h1 {
        font-size: 1.8rem;
    }
    
    .blog-content h2 {
        font-size: 1.5rem;
    }
    
    .blog-content h3 {
        font-size: 1.2rem;
    }
    
    .pricing-table {
        font-size: 0.9rem;
    }
    
    .pricing-table th,
    .pricing-table td {
        padding: 0.5rem;
    }
}