body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: #1f2937;
}

/* Content Cards */
.content-card {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    transition: box-shadow 0.3s ease;
}

.content-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.content-card-alt {
    background: #f9fafb;
    border-radius: 12px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    border-left: 4px solid #17A2B8;
}

/* Typography Improvements */
.prose {
    max-width: 75ch;
}

.prose h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-top: 0;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    color: #111827;
}

.prose h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.4;
    color: #374151;
}

.prose p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #4b5563;
}

.prose ul {
    list-style-type: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

.prose li {
    margin: 1rem 0;
    line-height: 1.8;
    padding-left: 2rem;
    position: relative;
}

.prose li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #17A2B8;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Highlight Boxes */
.highlight-box {
    background: linear-gradient(135deg, #17A2B8 0%, #0d8ba0 100%);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    box-shadow: 0 4px 15px rgba(23, 162, 184, 0.3);
}

.highlight-box h3 {
    color: white;
    margin-top: 0;
}

.info-box {
    background: #fef3c7;
    border-left: 4px solid #f59e0b;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.info-box p {
    margin: 0;
    color: #92400e;
}

/* Step Cards */
.step-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.step-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #17A2B8, #0d8ba0);
    color: white;
    border-radius: 50%;
    font-weight: bold;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.step-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #111827;
}

.step-card p {
    color: #6b7280;
    line-height: 1.7;
    margin: 0;
}

/* Sticky Header CTA */
.sticky-header-cta {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    z-index: 1000;
    padding: 14px 0;
    animation: slideDown 0.4s ease-out;
    border-bottom: 3px solid #17A2B8;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Social Proof Bar */
.social-proof-bar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: #17A2B8;
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 500;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    padding: 1rem 0;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
}

.trust-badge span {
    font-size: 0.75rem;
    font-weight: 600;
    color: #374151;
}

/* Testimonials */
.testimonial-card {
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
}

/* FAQ Accordion */
.faq-item {
    transition: box-shadow 0.2s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-icon.rotate-45 {
    transform: rotate(45deg);
}

.faq-answer {
    transition: max-height 0.3s ease;
}

/* Enhanced Footer */
.footer-locations {
    margin-bottom: 2rem;
}

.county-columns {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.county-group h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    border-bottom: 2px solid #17A2B8;
    padding-bottom: 0.5rem;
}

.county-group h4 a.county-link {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s ease;
}

.county-group h4 a.county-link:hover {
    color: #17A2B8;
}

.county-group ul {
    list-style: none;
    padding: 0;
}

.county-group ul li {
    margin-bottom: 0.5rem;
}

.county-group ul li a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 0.875rem;
}

.county-group ul li a:hover {
    color: #17A2B8;
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .sticky-header-cta {
        padding: 8px 0;
    }
    
    .social-proof-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 1.5rem 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .trust-badges {
        gap: 1rem;
    }
    
    .trust-badge {
        flex-direction: row;
        gap: 0.5rem;
    }
    
    .trust-badge svg {
        width: 1.5rem;
        height: 1.5rem;
    }
    
    .trust-badge span {
        font-size: 0.7rem;
    }
    
    .county-columns {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .county-group {
        padding-bottom: 1rem;
        border-bottom: 1px solid #374151;
    }
    
    .county-group:last-child {
        border-bottom: none;
    }
}

/* Form Progress Indicator */
.form-progress {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.progress-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d1d5db;
}

.progress-dot.active {
    background: #17A2B8;
    width: 12px;
    height: 12px;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Hover Effects */
.situation-box {
    transition: all 0.3s ease;
}

.situation-box:hover {
    transform: translateY(-2px);
}
