 <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background: #fff;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header */
        header {
            background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
            color: white;
            padding: 1rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: #fff;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        
        .nav-links a {
            color: white;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .nav-links a:hover {
            color: #ffd700;
        }
        
        .cta-button {
            background: #ff6b35;
            color: white;
            padding: 10px 20px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            text-decoration: none;
            transition: all 0.3s;
            font-weight: 600;
        }
        
        .cta-button:hover {
            background: #e55a2b;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
        }

        /* Hamburger menu button - hidden on desktop */
        .menu-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            padding: 5px;
            z-index: 1001;
        }
        
        .menu-toggle:hover {
            color: #ffd700;
        }
        
        /* Mobile styles */
        @media (max-width: 768px) {
            /* Hide desktop nav links and show hamburger */
            .nav-links {
                position: fixed;
                top: 70px;
                right: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
                flex-direction: column;
                justify-content: flex-start;
                align-items: center;
                padding: 2rem 0;
                transition: right 0.3s ease;
                box-shadow: 0 5px 20px rgba(0,0,0,0.2);
                z-index: 999;
            }
            
            /* Show nav when menu is open */
            .nav-links.active {
                right: 0;
            }
            
            .nav-links li {
                margin: 1rem 0;
                width: 90%;
            }
            
            .nav-links a {
                font-size: 1.2rem;
                padding: 1rem 2rem;
                display: block;
                width: 100%;
                text-align: center;
                border-bottom: 1px solid rgba(255,255,255,0.1);
                border-radius: 8px;
                transition: background-color 0.3s;
            }
            
            .nav-links a:hover {
                background-color: rgba(255,255,255,0.1);
            }
            
            /* Show hamburger button */
            .menu-toggle {
                display: block;
            }
            
            /* Hide desktop CTA button on mobile */
            .cta-button {
                display: none;
            }
        }
        
        /* Hamburger animation */
        .hamburger {
            width: 25px;
            height: 3px;
            background: white;
            position: relative;
            transition: all 0.3s;
        }
        
        .hamburger::before,
        .hamburger::after {
            content: '';
            width: 25px;
            height: 3px;
            background: white;
            position: absolute;
            transition: all 0.3s;
        }
        
        .hamburger::before {
            top: -8px;
        }
        
        .hamburger::after {
            top: 8px;
        }
        
        /* Animate hamburger to X when active */
        .menu-toggle.active .hamburger {
            background: transparent;
        }
        
        .menu-toggle.active .hamburger::before {
            transform: rotate(45deg);
            top: 0;
        }
        
        .menu-toggle.active .hamburger::after {
            transform: rotate(-45deg);
            top: 0;
        }
        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 120px 0 80px;
            text-align: center;
        }
        
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }
        
        .hero p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .hero-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .btn-primary {
            background: #ff6b35;
            color: white;
            padding: 15px 30px;
            border: none;
            border-radius: 8px;
            font-size: 1.1rem;
            cursor: pointer;
            text-decoration: none;
            transition: all 0.3s;
            font-weight: 600;
        }
        
        .btn-secondary {
            background: transparent;
            color: white;
            padding: 15px 30px;
            border: 2px solid white;
            border-radius: 8px;
            font-size: 1.1rem;
            cursor: pointer;
            text-decoration: none;
            transition: all 0.3s;
            font-weight: 600;
        }
        
        .btn-primary:hover, .btn-secondary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.2);
        }
        
        /* Stats Section */
        .stats {
            background: #f8f9fa;
            padding: 60px 0;
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            text-align: center;
        }
        
        .stat-item {
            background: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }
        
        .stat-item:hover {
            transform: translateY(-5px);
        }
        
        .stat-number {
            font-size: 3rem;
            font-weight: bold;
            color: #1e3c72;
            margin-bottom: 0.5rem;
        }
        
        .stat-label {
            color: #666;
            font-size: 1.1rem;
        }
        
        /* Services Section */
        .services {
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: #1e3c72;
        }
        .reality-check {
    margin-top: 4rem;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
}

.reality-check h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #ffd700;
}

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

.reality-item {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #ff6b35;
}

.reality-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.reality-item p {
    line-height: 1.6;
    font-size: 1.05rem;
}

.reality-item strong {
    color: #ffd700;
}
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        
        .service-card {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s;
            border-top: 4px solid #ff6b35;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }
        
        .service-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }
        
        .service-card h3 {
            color: #1e3c72;
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }
        
        /* Pricing Section */
        .pricing {
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            padding: 80px 0;
        }
        
        .pricing-card {
            background: white;
            padding: 3rem;
            border-radius: 20px;
            text-align: center;
            max-width: 500px;
            margin: 0 auto;
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
        }
        
        .pricing-highlight {
            background: #ff6b35;
            color: white;
            padding: 10px 20px;
            border-radius: 20px;
            display: inline-block;
            margin-bottom: 2rem;
            font-weight: 600;
        }
        
        .pricing-main {
            font-size: 4rem;
            font-weight: bold;
            color: #1e3c72;
            margin-bottom: 0.5rem;
        }
        
        .pricing-subtitle {
            color: #666;
            margin-bottom: 2rem;
            font-size: 1.2rem;
        }
        
        .pricing-features {
            list-style: none;
            margin-bottom: 2rem;
        }
        
        .pricing-features li {
            padding: 10px 0;
            border-bottom: 1px solid #eee;
        }
        
        .pricing-features li:before {
            content: "✓";
            color: #28a745;
            font-weight: bold;
            margin-right: 10px;
        }
        
        /* Testimonial */
        .testimonial {
            background: #1e3c72;
            color: white;
            padding: 80px 0;
            text-align: center;
        }
        
        .testimonial-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
       .testimonial-title {
            font-size: 1.9rem;
            font-weight: 700;
            margin-bottom: 2rem;
            line-height: 1.8;
        }
        
        .testimonial-quote {
            font-size: 1.5rem;
            font-style: italic;
            margin-bottom: 2rem;
            line-height: 1.8;
        }
        
        .testimonial-author {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 2rem;
            
        }
        .Testimonial-h2 {
            font-size: 1.6rem;
            font-weight: 600;
            margin-bottom: 2rem;
            line-height: 1.8;
        }
        .testimonial-quote2 {
            font-size: 1.5rem;
            margin-bottom: 2rem;
            line-height: 1.8;
            
        }
        .testimonial-quote3 {
            font-size: 1.5rem;
            margin-bottom: 2rem;
            line-height: 1.8;
            border-bottom: 2px solid white;
        }
        /* About Section Styles */
.about {
    padding: 80px 0;
    background: #fff;
}

.about-mission {
    text-align: center;
    margin-bottom: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
}

.about-mission h3 {
    color: #1e3c72;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.about-mission p {
    font-size: 1.3rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.about-story {
    margin-bottom: 4rem;
}

.story-grid {
    display: grid;
    
    gap: 3rem;
    align-items: center;
}

.story-content h3 {
    color: #1e3c72;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

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

.story-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-stat {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    border-top: 4px solid #ff6b35;
}

.about-stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: #1e3c72;
    margin-bottom: 0.5rem;
}

.about-stat-label {
    color: #666;
    font-size: 0.95rem;
}

.about-differences {
    margin-bottom: 4rem;
}

.about-differences h3 {
    text-align: center;
    color: #1e3c72;
    font-size: 2rem;
    margin-bottom: 2rem;
}

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

.difference-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    border-top: 4px solid #ff6b35;
    transition: transform 0.3s;
}

.difference-item:hover {
    transform: translateY(-5px);
}

.difference-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.difference-item h4 {
    color: #1e3c72;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.difference-item p {
    color: #666;
    line-height: 1.6;
}

.about-local {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    margin-bottom: 4rem;
}

.about-local h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.local-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.counties-served {
    margin: 2rem 0;
}

.county-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.county-column ul {
    list-style: none;
}

.county-column li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.county-column li:before {
    content: "📍";
    margin-right: 10px;
}

.about-values {
    margin-bottom: 4rem;
}

.about-values h3 {
    text-align: center;
    color: #1e3c72;
    font-size: 2rem;
    margin-bottom: 2rem;
}

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

.value-item {
    text-align: center;
    padding: 1.5rem;
}

.value-item h4 {
    color: #1e3c72;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.value-item p {
    color: #666;
    line-height: 1.6;
}

.about-cta {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
}

.about-cta h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.about-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.about-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .story-grid {
        grid-template-columns: 1fr;
    }
    
    .county-list {
        grid-template-columns: 1fr;
    }
    
    .about-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .differences-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }
}
        /* CTA Section */
        .final-cta {
            background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
            color: white;
            padding: 80px 0;
            text-align: center;
        }
        
        .final-cta h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }
        
        .final-cta p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
        }
        
        /* Footer */
        footer {
            background: #333;
            color: white;
            padding: 40px 0;
            text-align: center;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        
        .footer-section h4 {
            margin-bottom: 1rem;
            color: #ff6b35;
        }
        
        .footer-section p, .footer-section a {
            color: #ccc;
            text-decoration: none;
            margin-bottom: 0.5rem;
            display: block;
        }
        
        .footer-section a:hover {
            color: #ff6b35;
        }
        
        /* Mobile Responsive */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero p {
                font-size: 1.1rem;
            }
            
            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .pricing-main {
                font-size: 3rem;
            }
        }
        
        /* Smooth Scroll */
        html {
            scroll-behavior: smooth;
        }
        
        /* Animation */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .service-card, .stat-item {
            animation: fadeInUp 0.8s ease-out;
        }
        /* calculator */
        .cost-calculator {
            background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
            color: white;
            padding: 80px 0;
            text-align: center;
        }

        .cost-calculator h2 {
            font-size: 2.5rem;
            margin-bottom: 3rem;
            font-weight: 700;
        }

        .calculator {
            max-width: 600px;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.1);
            padding: 3rem;
            border-radius: 20px;
            backdrop-filter: blur(10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        }

        .calculator input {
            width: 100%;
            padding: 15px 20px;
            margin: 10px 0;
            border: none;
            border-radius: 10px;
            font-size: 1.1rem;
            background: white;
            color: #333;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .calculator input:focus {
            outline: none;
            box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
        }

        .calculator button {
            background: #1e3c72;
            color: white;
            padding: 15px 30px;
            border: none;
            border-radius: 10px;
            font-size: 1.2rem;
            font-weight: 600;
            cursor: pointer;
            margin: 20px 0;
            transition: all 0.3s;
            width: 100%;
        }

        .calculator button:hover {
            background: #2a5298;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(30, 60, 114, 0.3);
        }

        .result {
            margin-top: 2rem;
            padding: 2rem;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 15px;
            min-height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .result.show {
            animation: slideUp 0.6s ease-out;
        }

        .loss-amount {
            font-size: 3rem;
            font-weight: bold;
            color: #ffd700;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .loss-details {
            margin-top: 1rem;
            font-size: 1.1rem;
            line-height: 1.6;
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @media (max-width: 768px) {
            .cost-calculator h2 {
                font-size: 2rem;
            }
            
            .calculator {
                padding: 2rem 1.5rem;
            }
            
            .loss-amount {
                font-size: 2.5rem;
            }
        }
         /* Intake Form Styles */
        .intake-form-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 80px 0;
        }
        
        .form-container {
            max-width: 800px;
            margin: 0 auto;
            background: white;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
            overflow: hidden;
        }
        
        .form-header {
            background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
            color: white;
            padding: 3rem;
            text-align: center;
        }
        
        .form-header h2 {
            font-size: 2.2rem;
            margin-bottom: 1rem;
        }
        
        .form-header p {
            font-size: 1.1rem;
            opacity: 0.9;
        }
        
        .intake-form {
            padding: 3rem;
        }
        
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
        }
        
        .form-group {
            margin-bottom: 1.5rem;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: #333;
        }
        
        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid #e1e5e9;
            border-radius: 8px;
            font-size: 16px;
            transition: all 0.3s;
            background: #fff;
        }
        
        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #1e3c72;
            box-shadow: 0 0 0 3px rgba(30, 60, 114, 0.1);
        }
        
        .form-group textarea {
            resize: vertical;
            min-height: 100px;
        }
        
        .checkbox-group {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
            margin-top: 0.5rem;
        }
        
        .checkbox-label {
            display: flex;
            align-items: center;
            cursor: pointer;
            padding: 10px;
            border-radius: 8px;
            transition: background-color 0.3s;
            position: relative;
        }
        
        .checkbox-label:hover {
            background: #f8f9fa;
        }
        
        .checkbox-label input[type="checkbox"] {
            opacity: 0;
            position: absolute;
            width: 0;
            height: 0;
        }
        
        .checkmark {
            width: 20px;
            height: 20px;
            border: 2px solid #ddd;
            border-radius: 4px;
            margin-right: 10px;
            position: relative;
            flex-shrink: 0;
            transition: all 0.3s;
        }
        
        .checkbox-label input[type="checkbox"]:checked + .checkmark {
            background: #1e3c72;
            border-color: #1e3c72;
        }
        
        .checkbox-label input[type="checkbox"]:checked + .checkmark:after {
            content: "✓";
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: white;
            font-size: 12px;
            font-weight: bold;
        }
        
        .consent-checkbox {
            background: #f8f9fa;
            padding: 15px;
            border-radius: 8px;
            margin-top: 1rem;
        }
        
        .form-actions {
            text-align: center;
            margin-top: 2rem;
        }
        
        .form-submit {
            background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
            color: white;
            padding: 15px 40px;
            border: none;
            border-radius: 8px;
            font-size: 1.2rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            width: 100%;
            max-width: 400px;
        }
        
        .form-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
        }
        
        .form-guarantee {
            margin-top: 1rem;
            color: #666;
            font-size: 0.9rem;
        }
        
        .form-success {
            padding: 3rem;
            text-align: center;
        }
        
        .success-icon {
            width: 80px;
            height: 80px;
            background: #28a745;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: white;
            margin: 0 auto 2rem;
        }
        
        .form-success h3 {
            color: #1e3c72;
            margin-bottom: 1rem;
            font-size: 2rem;
        }
        
        .form-success ul {
            text-align: left;
            max-width: 400px;
            margin: 1rem auto;
        }
        
        .form-success li {
            margin-bottom: 0.5rem;
            padding-left: 1rem;
        }
        
        /* Mobile Responsive for Forms */
        @media (max-width: 768px) {
            .form-row {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
            
            .checkbox-group {
                grid-template-columns: 1fr;
            }
            
            .intake-form {
                padding: 2rem 1.5rem;
            }
            
            .form-header {
                padding: 2rem 1.5rem;
            }
            
            .form-header h2 {
                font-size: 1.8rem;
            }
        }
    </style>