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

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Crimson+Text:wght@400;600&display=swap');

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a202c;
    font-weight: 400;
    background: #ffffff;
}

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

/* Header */
header {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: white;
    padding: 1.5rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1000;
}

.logo {
    font-family: 'Crimson Text', serif;
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #ffffff;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(26, 32, 44, 0.85) 0%, rgba(45, 55, 72, 0.75) 50%, rgba(113, 128, 150, 0.65) 100%), url('michigan-house-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 6rem 0;
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(197, 164, 100, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.headline {
    font-family: 'Crimson Text', serif;
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.15;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.subheadline {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    font-weight: 400;
    color: #e2e8f0;
}

/* Lead Form */
.lead-form-container {
    background: rgba(255, 255, 255, 0.98);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 4px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.lead-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #c5a464 0%, #d4af37 50%, #c5a464 100%);
}

.lead-form h3 {
    color: #1a202c;
    margin-bottom: 2rem;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.social-proof-badge {
    background: linear-gradient(135deg, #c5a464 0%, #d4af37 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    margin: 0 auto 1.5rem;
    display: block;
    width: fit-content;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

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

.form-group input {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    background: #f8fafc;
}

.form-group input:focus {
    outline: none;
    border-color: #c5a464;
    background: white;
    box-shadow: 0 0 0 3px rgba(197, 164, 100, 0.1);
    transform: translateY(-2px);
}

.form-group input:focus {
    outline: none;
    border-color: #3498db;
}

.cta-button {
    width: 100%;
    background: linear-gradient(135deg, #c5a464 0%, #d4af37 100%);
    color: white;
    padding: 1.2rem;
    border: none;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(197, 164, 100, 0.4);
}

.cta-button:active {
    transform: translateY(0);
}

/* Trust Section */
.trust-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.trust-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(197, 164, 100, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.trust-header {
    text-align: center;
    margin-bottom: 4rem;
}

.trust-header h2 {
    font-family: 'Crimson Text', serif;
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.trust-subtitle {
    font-size: 1.2rem;
    color: #cbd5e0;
    font-weight: 400;
}

.trust-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.trust-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat {
    text-align: center;
    padding: 2rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.stat:hover {
    transform: translateY(-8px);
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #c5a464 0%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
    font-family: 'Inter', sans-serif;
}

.stat-label {
    font-size: 0.9rem;
    color: #cbd5e0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.trust-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.trust-badges .badge.premium {
    background: linear-gradient(135deg, rgba(197, 164, 100, 0.2), rgba(212, 175, 55, 0.1));
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    border: 1px solid rgba(197, 164, 100, 0.3);
    transition: all 0.3s ease;
    text-align: center;
    color: #f7fafc;
}

.trust-badges .badge.premium:hover {
    background: linear-gradient(135deg, rgba(197, 164, 100, 0.3), rgba(212, 175, 55, 0.2));
    transform: translateY(-2px);
}

/* FAQ Section */
.faq {
    padding: 4rem 0;
}

.faq h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
    font-size: 2.5rem;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid #e9ecef;
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: white;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    transition: background-color 0.2s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question[aria-expanded="true"] {
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.faq-icon {
    transition: transform 0.2s ease;
    color: #666;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 0 1.5rem 1.5rem 1.5rem;
    background: white;
}

.faq-answer.show {
    display: block;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Footer */
footer {
    background: #2c3e50;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-content a {
    color: #3498db;
    text-decoration: none;
}

.footer-content a:hover {
    text-decoration: underline;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    /* Header Navigation Mobile Fixes */
    .header {
        padding: 0.8rem 0;
        position: relative;
    }
    
    .header .container {
        padding: 0 15px;
    }
    
    /* Show hamburger button on mobile */
    .mobile-menu-toggle {
        display: flex !important;
    }
    
    /* Hide and transform nav menu for mobile */
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: rgba(26, 32, 44, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 5rem 2rem 2rem;
        gap: 1.5rem;
        transition: right 0.3s ease;
        z-index: 1000;
        border-left: 1px solid rgba(197, 164, 100, 0.2);
    }
    
    .nav.active {
        right: 0;
    }
    
    .nav a {
        font-size: 1.1rem;
        width: 100%;
        padding: 0.8rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-cta {
        margin-top: 1rem;
        padding: 1rem 1.5rem;
        font-size: 1rem;
        text-align: center;
        width: auto;
        border-bottom: none;
    }
    
    .logo h1 {
        font-size: 1.3rem;
    }
    
    /* Hero Section */
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .headline {
        font-size: 2rem;
    }
    
    .subheadline {
        font-size: 1.1rem;
    }
    
    .lead-form-container {
        margin-top: 2rem;
    }
    
    .hero {
        background-attachment: scroll;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .badges-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    /* Extra Small Screen Header Adjustments */
    .nav {
        width: 90%;
        padding: 4rem 1.5rem 2rem;
    }
    
    .nav a {
        font-size: 1rem;
    }
    
    .nav-cta {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .logo h1 {
        font-size: 1.1rem;
    }
    
    /* Hero Section */
    .hero {
        padding: 2rem 0;
    }
    
    .headline {
        font-size: 1.8rem;
    }
    
    .lead-form-container {
        padding: 1.5rem;
    }
}

/* Success Message */
.success-message {
    background: #27ae60;
    color: white;
    padding: 1rem;
    border-radius: 5px;
    text-align: center;
    margin-bottom: 1rem;
    display: none;
}

.success-message.show {
    display: block;
}

/* Comparison Section */
.comparison-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, #f8fafc 0%, #edf2f7 100%);
}

.comparison-section h2 {
    font-family: 'Crimson Text', serif;
    font-size: 2.8rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1rem;
    color: #1a202c;
}

.section-subtitle {
    text-align: center;
    color: #4a5568;
    font-size: 1.3rem;
    margin-bottom: 3rem;
    font-weight: 400;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.comparison-table {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 3rem auto 0;
}

.comparison-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: white;
}

.comparison-header .comparison-col {
    padding: 1.5rem;
    font-weight: 700;
    text-align: center;
    font-size: 1.1rem;
}

.comparison-header .traditional {
    background: rgba(239, 68, 68, 0.1);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-header .cash {
    background: linear-gradient(135deg, rgba(197, 164, 100, 0.2), rgba(212, 175, 55, 0.1));
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    border-bottom: 1px solid #e2e8f0;
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-feature {
    padding: 1.5rem;
    font-weight: 600;
    color: #2d3748;
    background: #f7fafc;
}

.comparison-traditional {
    padding: 1.5rem;
    text-align: center;
    color: #e53e3e;
    font-weight: 600;
    background: #fef5e7;
    border-left: 1px solid #e2e8f0;
}

.comparison-cash {
    padding: 1.5rem;
    text-align: center;
    color: #38a169;
    font-weight: 700;
    background: linear-gradient(135deg, rgba(197, 164, 100, 0.05), rgba(212, 175, 55, 0.03));
    border-left: 1px solid #e2e8f0;
}

/* Counter Animation */
.counter {
    display: inline-block;
}

/* Header Navigation */
.header {
    background: rgba(26, 32, 44, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(197, 164, 100, 0.2);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    color: #c5a464;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #c5a464;
}

.nav-cta {
    background: linear-gradient(135deg, #c5a464 0%, #d4af37 100%);
    color: white !important;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(197, 164, 100, 0.4);
    color: white !important;
}

/* Mobile Menu Toggle Button - Base styles */
.mobile-menu-toggle {
    display: none; /* Hidden by default, shown in mobile media query */
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    justify-content: center;
    align-items: center;
    gap: 4px;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:first-child {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:last-child {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* City Page Specific Styles */
.city-hero {
    min-height: 70vh;
}

.city-specific {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #edf2f7 100%);
}

.city-specific h2 {
    font-family: 'Crimson Text', serif;
    font-size: 2.8rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1rem;
    color: #1a202c;
}

.city-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.city-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.city-benefits {
    background: white;
}

.city-process {
    padding: 4rem 0;
}

.local-trust {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #edf2f7 100%);
}

.local-trust h2 {
    font-family: 'Crimson Text', serif;
    font-size: 2.8rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1rem;
    color: #1a202c;
}

.local-trust .trust-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.local-trust .trust-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.city-faq {
    background: white;
}

.final-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: white;
    text-align: center;
}

.final-cta h2 {
    font-family: 'Crimson Text', serif;
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.cta-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-button.large {
    font-size: 1.3rem;
    padding: 1.5rem 3rem;
    text-decoration: none;
    display: inline-block;
}

/* Footer */
.footer {
    background: #1a202c;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
    color: #c5a464;
    margin-bottom: 1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #c5a464;
}

.footer-bottom {
    border-top: 1px solid rgba(197, 164, 100, 0.2);
    padding-top: 1rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

/* Sticky Address Form */
.sticky-address-form {
    position: fixed;
    bottom: -100px;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    padding: 1rem;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 3px solid #c5a464;
}

.sticky-address-form.show {
    bottom: 0;
}

.sticky-form-content {
    display: flex;
    gap: 0.5rem;
    max-width: 400px;
    margin: 0 auto;
}

.sticky-address-input {
    flex: 1;
    padding: 0.8rem 1rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.sticky-get-offer-btn {
    background: linear-gradient(135deg, #c5a464 0%, #d4af37 100%);
    color: white;
    border: none;
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.sticky-get-offer-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(197, 164, 100, 0.4);
}

/* Process Steps Section */
.process-steps {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    position: relative;
    overflow: hidden;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(197, 164, 100, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.process-steps h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: white;
    font-size: 3rem;
    font-weight: 600;
    font-family: 'Crimson Text', serif;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
}

.process-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.3rem;
    margin-bottom: 4rem;
    font-weight: 400;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 16.666%;
    right: 16.666%;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #c5a464 20%, #c5a464 80%, transparent 100%);
    transform: translateY(-50%);
    z-index: 1;
}

.step {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-align: center;
    position: relative;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.step:hover {
    transform: translateY(-12px) scale(1.05);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #c5a464 0%, #d4af37 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 1.2rem;
    box-shadow: 0 4px 20px rgba(197, 164, 100, 0.4);
}

.step-icon {
    font-size: 3.5rem;
    margin: 1.5rem 0 2rem;
    display: block;
    background: linear-gradient(135deg, #c5a464 0%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.step h3 {
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
    color: #1a202c;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
}

.step p {
    color: #4a5568;
    line-height: 1.6;
    font-size: 1rem;
    font-weight: 500;
}

.step-duration {
    background: linear-gradient(135deg, rgba(197, 164, 100, 0.1), rgba(212, 175, 55, 0.05));
    color: #c5a464;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 1.5rem;
    display: inline-block;
    border: 1px solid rgba(197, 164, 100, 0.2);
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #edf2f7 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-section h2 {
    font-family: 'Crimson Text', serif;
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a202c;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.credentials {
    margin-top: 2rem;
}

.credential-item {
    background: rgba(197, 164, 100, 0.1);
    padding: 1rem;
    margin-bottom: 0.8rem;
    border-radius: 8px;
    border-left: 4px solid #c5a464;
    font-size: 1rem;
    color: #2d3748;
}

.about-image {
    height: 400px;
}

.image-placeholder {
    height: 100%;
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 2rem;
}

.placeholder-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #c5a464;
}

.placeholder-content p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Situations Section */
.situations-section {
    padding: 5rem 0;
    background: white;
}

.situations-section h2 {
    font-family: 'Crimson Text', serif;
    font-size: 2.8rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1rem;
    color: #1a202c;
}

.situations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.situation-card {
    background: linear-gradient(135deg, #f8fafc 0%, #edf2f7 100%);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(197, 164, 100, 0.1);
}

.situation-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.situation-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.situation-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1a202c;
    font-weight: 700;
}

.situation-card p {
    color: #4a5568;
    line-height: 1.6;
    font-size: 1rem;
}

/* Service Areas Section */
.service-areas-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: white;
}

.service-areas-section h2 {
    font-family: 'Crimson Text', serif;
    font-size: 2.8rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1rem;
    color: white;
}

.service-areas-section .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.areas-content {
    margin-top: 3rem;
}

.primary-areas h3 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #c5a464;
}

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

.area-group {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(197, 164, 100, 0.2);
}

.area-group h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #c5a464;
    font-weight: 700;
    text-align: center;
}

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

.area-group li {
    padding: 0.4rem 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.coverage-note {
    margin-top: 3rem;
    text-align: center;
    background: rgba(197, 164, 100, 0.1);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(197, 164, 100, 0.3);
}

.coverage-note p {
    font-size: 1.1rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.95);
}

/* Service Areas Detailed */
.service-areas-detailed {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #edf2f7 100%);
}

.service-areas-detailed h2 {
    font-family: 'Crimson Text', serif;
    font-size: 2.8rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a202c;
}

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

.city-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(197, 164, 100, 0.1);
}

.city-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.city-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1a202c;
    font-weight: 700;
}

.city-card h3 a {
    color: #c5a464;
    text-decoration: none;
    transition: color 0.3s ease;
}

.city-card h3 a:hover {
    color: #d4af37;
}

.city-card p {
    color: #4a5568;
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
}

/* Benefits Section */
.benefits {
    padding: 4rem 0;
    background: #f8f9fa;
}

.benefits h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
    font-size: 2.5rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.checkmark {
    font-size: 1.5rem;
    margin-right: 1rem;
}

.benefit-item p {
    color: #2c3e50;
    font-weight: 500;
    margin: 0;
}


/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #edf2f7 100%);
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: #1a202c;
    font-size: 2.8rem;
    font-weight: 600;
    font-family: 'Crimson Text', serif;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 16px;
    border-left: 4px solid #3498db;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.testimonial-content p {
    color: #333;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-info strong {
    color: #1a1a1a;
    display: block;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.author-info span {
    color: #666;
    font-size: 0.9rem;
}

/* Mobile Responsive Updates */
@media (max-width: 768px) {
    .headline {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .subheadline {
        font-size: 1.2rem;
    }
    
    .hero {
        padding: 4rem 0;
        background-attachment: scroll;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .lead-form-container {
        margin-top: 2rem;
        padding: 2rem;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .trust-badges {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .comparison-table {
        display: block;
    }
    
    .comparison-header {
        display: none;
    }
    
    .comparison-row {
        display: block;
        margin-bottom: 1.5rem;
        background: white;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }
    
    .comparison-feature {
        font-weight: 700;
        background: #1a202c;
        color: white;
        padding: 1rem;
        text-align: center;
        font-size: 1.1rem;
    }
    
    .comparison-traditional,
    .comparison-cash {
        display: block;
        border: none;
        padding: 1rem;
        position: relative;
    }
    
    .comparison-traditional {
        background: #fef5e7;
        color: #e53e3e;
        border-bottom: 1px solid #e2e8f0;
    }
    
    .comparison-traditional::before {
        content: "Traditional Sale: ";
        font-weight: 700;
        color: #2d3748;
    }
    
    .comparison-cash {
        background: linear-gradient(135deg, rgba(197, 164, 100, 0.08), rgba(212, 175, 55, 0.05));
        color: #38a169;
    }
    
    .comparison-cash::before {
        content: "Cash Sale: ";
        font-weight: 700;
        color: #2d3748;
    }
    
    .section-subtitle {
        font-size: 1.2rem;
    }
    
    .comparison-section h2 {
        font-size: 2rem;
    }
    
    .comparison-row {
        margin-bottom: 1rem;
    }
    
    .comparison-feature {
        font-size: 1rem;
        padding: 0.8rem;
    }
    
    .comparison-traditional,
    .comparison-cash {
        padding: 0.8rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-image {
        height: 300px;
    }
    
    .situations-grid {
        grid-template-columns: 1fr;
    }
    
    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .headline {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .hero {
        padding: 3rem 0;
    }
    
    .lead-form-container {
        padding: 1.5rem;
    }
    
    .trust-stats {
        grid-template-columns: 1fr;
    }
    
    .trust-badges {
        grid-template-columns: 1fr;
    }
    
    .step-icon {
        font-size: 3rem;
    }
    
    .trust-header h2,
    .comparison-section h2,
    .process-steps h2,
    .benefits h2,
    .testimonials h2 {
        font-size: 2.2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .stat-number {
        font-size: 2.8rem;
    }
}

/* Service area links styling */
.area-group ul li a {
    color: #c5a464;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.area-group ul li a:hover {
    color: #d4af37;
}

/* Neighborhoods Section */
.neighborhoods-section {
    padding: 5rem 0;
    background: white;
    overflow-x: hidden;
}

.neighborhoods-section h2 {
    font-family: 'Crimson Text', serif;
    font-size: 2.8rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1rem;
    color: #1a202c;
}

.neighborhoods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    width: 100%;
}

.neighborhood-card {
    background: linear-gradient(135deg, #f8fafc 0%, #edf2f7 100%);
    border: 1px solid rgba(197, 164, 100, 0.1);
    border-radius: 16px;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.neighborhood-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.neighborhood-card h3 {
    color: #c5a464;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    word-wrap: break-word;
}

.neighborhood-card p {
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

/* Market Analysis Section */
.market-analysis {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #edf2f7 100%);
    overflow-x: hidden;
}

.market-analysis h2 {
    font-family: 'Crimson Text', serif;
    font-size: 2.8rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a202c;
}

.market-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.market-factors, .market-insights {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.market-factors h3, .market-insights h3 {
    color: #c5a464;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    word-wrap: break-word;
}

.market-factors ul {
    margin: 0;
    padding-left: 1.5rem;
}

.market-factors li {
    margin-bottom: 1rem;
    color: #4a5568;
    line-height: 1.6;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.market-insights p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

@media (max-width: 768px) {
    .market-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .neighborhoods-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .neighborhood-card {
        margin: 0;
        padding: 1.5rem;
    }
    
    .market-factors, .market-insights {
        padding: 0 1rem;
    }
}

.market-factors h3, .market-insights h3 {
    color: #c5a464;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.market-factors ul {
    list-style: none;
    padding: 0;
}

.market-factors li {
    margin-bottom: 1rem;
    padding-left: 1rem;
    border-left: 3px solid #c5a464;
    line-height: 1.6;
    color: #4a5568;
}

.market-factors li strong {
    color: #1a202c;
}

.market-insights p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}


.error-message {
    background: linear-gradient(135deg, #f44336, #d32f2f);
    color: white;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-weight: 500;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.error-message.show {
    opacity: 1;
    transform: translateY(0);
}


/* Logo link styling */
.logo a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

.logo a:hover {
    opacity: 0.8;
}

/* Neighborhoods Section */
.neighborhoods-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #edf2f7 100%);
}

.neighborhoods-section h2 {
    font-family: 'Crimson Text', serif;
    font-size: 2.8rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1rem;
    color: #1a202c;
}

.neighborhoods-section .section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.neighborhoods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.neighborhood-item {
    background: rgba(255, 255, 255, 0.9);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(197, 164, 100, 0.15);
    transition: all 0.3s ease;
    position: relative;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.neighborhood-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(197, 164, 100, 0.3);
}

.neighborhood-item::before {
    content: '🏘️';
    position: absolute;
    top: -10px;
    right: 20px;
    font-size: 2rem;
    background: linear-gradient(135deg, #c5a464 0%, #d4af37 100%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(197, 164, 100, 0.3);
}

.neighborhood-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a202c;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.neighborhood-item p {
    color: #4a5568;
    line-height: 1.7;
    font-size: 1rem;
}

.neighborhood-note {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(197, 164, 100, 0.08);
    border-radius: 16px;
    border-left: 4px solid #c5a464;
}

.neighborhood-note p {
    color: #2d3748;
    font-size: 1rem;
    margin: 0;
    line-height: 1.6;
}

/* Market Analysis Section */
.market-analysis {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.market-analysis::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(197, 164, 100, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.market-analysis h2 {
    font-family: 'Crimson Text', serif;
    font-size: 2.8rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1rem;
    color: white;
}

.market-analysis .section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.market-content {
    position: relative;
    z-index: 2;
}

.market-overview {
    margin-bottom: 4rem;
}

.market-overview h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #c5a464;
    text-align: center;
    font-weight: 600;
}

.market-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(197, 164, 100, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(197, 164, 100, 0.4);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #c5a464;
    margin-bottom: 0.5rem;
    font-family: 'Inter', sans-serif;
}

.stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.market-factors {
    margin-bottom: 4rem;
}

.market-factors h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #c5a464;
    text-align: center;
    font-weight: 600;
}

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

.factor-item {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(197, 164, 100, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.factor-item:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(197, 164, 100, 0.4);
}

.factor-item h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 700;
}

.factor-item p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

.property-types {
    margin-bottom: 4rem;
}

.property-types h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #c5a464;
    text-align: center;
    font-weight: 600;
}

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

.property-type {
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(197, 164, 100, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
}

.property-type:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(197, 164, 100, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.property-type h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 700;
}

.property-type p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.value-range {
    background: linear-gradient(135deg, #c5a464 0%, #d4af37 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    letter-spacing: 0.5px;
}

.market-trends h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #c5a464;
    text-align: center;
    font-weight: 600;
}

.insights-list {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(197, 164, 100, 0.2);
    backdrop-filter: blur(10px);
    list-style: none;
}

.insights-list li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    position: relative;
    padding-left: 1.5rem;
}

.insights-list li:before {
    content: '💡';
    position: absolute;
    left: 0;
    top: 1rem;
}

.insights-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.insights-list li strong {
    color: #c5a464;
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .neighborhoods-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .neighborhood-item {
        padding: 2rem;
    }
    
    .neighborhood-item::before {
        top: -8px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .market-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .factors-grid,
    .property-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .factor-item,
    .property-type {
        padding: 2rem;
    }
    
    .insights-list {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .market-stats {
        grid-template-columns: 1fr;
    }
    
    .neighborhoods-section h2,
    .market-analysis h2 {
        font-size: 2.2rem;
    }
    
    .market-factors h3,
    .property-types h3,
    .market-trends h3 {
        font-size: 1.6rem;
    }
}

