        /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
        }

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

        /* Header Styles */
        header {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 1rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 20px rgba(0,0,0,0.1);
            backdrop-filter: blur(10px);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: bold;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            flex-shrink: 0;
        }

        .logo i {
            color: #4ade80;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
            margin: 0;
            padding: 0;
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
            white-space: nowrap;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: #4ade80;
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }
.mobile-menu {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.mobile-menu:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(102, 126, 234, 0.98);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 999;
    transform: translateY(-100%);
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0;
}

.mobile-nav.active {
    display: block;
    transform: translateY(0);
    opacity: 1;
}

.mobile-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.mobile-nav ul li {
    margin-bottom: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav ul li:last-child {
    border-bottom: none;
}

.mobile-nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    display: block;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.mobile-nav ul li a:hover {
    color: #4ade80;
    padding-left: 1rem;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu {
        display: block;
    }
}

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 120px 0 80px;
            text-align: center;
            position: relative;
            overflow: hidden;
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding-top: 4rem;
        }


        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="white" opacity="0.1"><polygon points="0,0 1000,100 1000,0"/></svg>');
            background-size: cover;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            width: 100%;
        }

        .hero h1 {
            font-size: clamp(2rem, 5vw, 3.5rem);
            margin-bottom: 1rem;
            animation: fadeInUp 1s ease-out;
            line-height: 1.2;
        }

        .hero p {
            font-size: clamp(1rem, 3vw, 1.3rem);
            margin-bottom: 1rem;
            animation: fadeInUp 1s ease-out 0.2s both;
        }

        .hero-subtitle {
            font-size: clamp(0.9rem, 2.5vw, 1.1rem);
            opacity: 0.9;
            margin-bottom: 2rem;
            animation: fadeInUp 1s ease-out 0.4s both;
        }

        .cta-button {
            display: inline-block;
            background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
            color: white;
            padding: 15px 30px;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: clamp(1rem, 2.5vw, 1.1rem);
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(74, 222, 128, 0.3);
            animation: fadeInUp 1s ease-out 0.6s both;
            white-space: nowrap;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(74, 222, 128, 0.4);
        }

        .cta-button i {
            margin-right: 8px;
        }

        /* Section Styles */
        section {
            padding: 60px 0;
        }

        .section-title {
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            text-align: center;
            margin-bottom: 1rem;
            color: #1f2937;
            line-height: 1.2;
        }

        .section-subtitle {
            font-size: clamp(1rem, 2.5vw, 1.2rem);
            text-align: center;
            margin-bottom: 3rem;
            color: #6b7280;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        /* About Section */
        .about {
            background: #f8fafc;
        }

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

        .about-card {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid #e5e7eb;
        }

        .about-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.15);
        }

        .about-card i {
            font-size: 3rem;
            color: #667eea;
            margin-bottom: 1rem;
        }

        .about-card h3 {
            font-size: clamp(1.2rem, 3vw, 1.5rem);
            margin-bottom: 1rem;
            color: #1f2937;
        }

        .about-card p {
            color: #6b7280;
            line-height: 1.7;
            font-size: clamp(0.9rem, 2vw, 1rem);
        }

        /* Partners Section */
        .partners {
            background: white;
        }

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

        .partner-card {
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid #e5e7eb;
        }

        .partner-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
        }

        .partner-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
            color: #667eea;
        }

        .partner-card h3 {
            font-size: clamp(1.1rem, 2.5vw, 1.3rem);
            margin-bottom: 1rem;
            color: #1f2937;
        }

        .partner-card p {
            color: #6b7280;
            margin-bottom: 1rem;
            line-height: 1.6;
            font-size: clamp(0.9rem, 2vw, 1rem);
        }

        .partner-link {
            color: #667eea;
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .partner-link:hover {
            color: #4f46e5;
        }

        /* States Section */
        .states {
            background: #f8fafc;
        }

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

        .state-card {
            background: white;
            border-radius: 10px;
            transition: all 0.3s ease;
            overflow: hidden;
            border: 1px solid #e5e7eb;
        }

        .state-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }

        .state-card a {
            display: block;
            padding: 1.5rem;
            text-decoration: none;
            color: #1f2937;
            text-align: center;
            transition: all 0.3s ease;
        }

        .state-card a:hover {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
        }

        .state-card i {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
            color: #667eea;
        }

        .state-card a:hover i {
            color: white;
        }

        .state-card span {
            font-weight: 600;
            font-size: clamp(0.9rem, 2vw, 1.1rem);
            word-wrap: break-word;
        }

        /* Contact Section */
        .contact {
            background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
            color: white;
        }

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

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
        }

        .contact-item i {
            font-size: 2rem;
            color: #4ade80;
            margin-top: 0.5rem;
            flex-shrink: 0;
        }

        .contact-item-content {
            flex: 1;
        }

        .contact-item h3 {
            font-size: clamp(1.1rem, 2.5vw, 1.3rem);
            margin-bottom: 0.5rem;
        }

        .contact-item p {
            color: #d1d5db;
            margin-bottom: 0.5rem;
            font-size: clamp(0.9rem, 2vw, 1rem);
        }

        .contact-detail {
            color: #4ade80;
            font-weight: 600;
            word-wrap: break-word;
        }

        .contact-cta {
            text-align: center;
            padding: 2rem;
            background: rgba(255,255,255,0.1);
            border-radius: 15px;
            backdrop-filter: blur(10px);
        }

        .contact-cta h3 {
            font-size: clamp(1.5rem, 4vw, 2rem);
            margin-bottom: 1rem;
        }

        .contact-cta p {
            color: #d1d5db;
            margin-bottom: 2rem;
            line-height: 1.7;
            font-size: clamp(0.9rem, 2vw, 1rem);
        }

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

        .cta-button.primary {
            background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
        }

        .cta-button.secondary {
            background: transparent;
            border: 2px solid #4ade80;
            color: #4ade80;
        }

        .cta-button.secondary:hover {
            background: #4ade80;
            color: white;
        }

        /* Footer */
        footer {
            background: #111827;
            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 {
            margin-bottom: 1rem;
            color: #4ade80;
            font-size: clamp(1.1rem, 2.5vw, 1.3rem);
        }

        .footer-section p {
            color: #d1d5db;
            line-height: 1.7;
            margin-bottom: 1rem;
            font-size: clamp(0.9rem, 2vw, 1rem);
        }

        .social-links {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .social-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: #374151;
            color: white;
            border-radius: 50%;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background: #4ade80;
            transform: translateY(-2px);
        }

        .footer-links {
            list-style: none;
        }

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

        .footer-links a {
            color: #d1d5db;
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: clamp(0.9rem, 2vw, 1rem);
        }

        .footer-links a:hover {
            color: #4ade80;
        }

        .contact-info-footer p {
            display: flex;
            align-items: flex-start;
            gap: 0.5rem;
            margin-bottom: 0.5rem;
        }

        .contact-info-footer i {
            color: #4ade80;
            margin-top: 0.2rem;
            flex-shrink: 0;
        }

        .newsletter {
            display: flex;
            gap: 0.5rem;
            margin-top: 1rem;
        }

        .newsletter-input {
            flex: 1;
            padding: 0.8rem;
            border: none;
            border-radius: 25px;
            background: #374151;
            color: white;
            outline: none;
            font-size: 1rem;
            min-width: 0;
        }

        .newsletter-input::placeholder {
            color: #9ca3af;
        }

        .newsletter-btn {
            padding: 0.8rem 1.2rem;
            background: #4ade80;
            color: white;
            border: none;
            border-radius: 25px;
            cursor: pointer;
            transition: all 0.3s ease;
            flex-shrink: 0;
        }

        .newsletter-btn:hover {
            background: #22c55e;
            transform: translateY(-2px);
        }

        .footer-bottom {
            border-top: 1px solid #374151;
            padding-top: 2rem;
            text-align: center;
            color: #9ca3af;
        }

        .footer-bottom p {
            font-size: clamp(0.8rem, 2vw, 0.9rem);
            margin-bottom: 0.5rem;
        }

        .footer-subtitle {
            margin-top: 0.5rem;
            font-size: clamp(0.8rem, 1.8vw, 0.9rem);
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in {
            animation: fadeInUp 0.6s ease-out;
        }

        /* Mobile Responsive Breakpoints */
        @media (max-width: 1024px) {
            .contact-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .logo {
                font-size: 1.3rem;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            
            .mobile-menu {
                display: block;
            }
            
            .hero {
                padding: 100px 0 60px;
                min-height: 80vh;
            }
            
            .section-title {
                margin-bottom: 0.5rem;
            }
            
            .section-subtitle {
                margin-bottom: 2rem;
            }
            
            .about-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            
            .partner-logos {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            
            .states-grid {
                grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
                gap: 0.8rem;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .cta-button {
                width: 100%;
                max-width: 300px;
                text-align: center;
            }
            
            .contact-item {
                flex-direction: column;
                align-items: center;
                text-align: center;
                gap: 0.5rem;
            }
            
            .contact-item i {
                margin-top: 0;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }
            
            .hero {
                padding: 80px 0 40px;
                min-height: 70vh;
            }
            
            section {
                padding: 40px 0;
            }
            
            .about-card,
            .partner-card {
                padding: 1.5rem;
            }
            
            .states-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 0.5rem;
            }
            
            .state-card a {
                padding: 1rem;
            }
            
            .contact-cta {
                padding: 1.5rem;
            }
            
            .logo {
                font-size: 1.1rem;
            }
            
            .nav-links {
                gap: 1rem;
            }
            
            .newsletter {
                flex-direction: column;
                gap: 1rem;
            }
            
            .newsletter-input,
            .newsletter-btn {
                width: 100%;
                border-radius: 10px;
            }
        }

        @media (max-width: 360px) {
            .hero {
                padding: 70px 0 30px;
            }
            
            .states-grid {
                grid-template-columns: 1fr;
            }
            
            .about-card,
            .partner-card {
                padding: 1rem;
            }
            
            .contact-cta {
                padding: 1rem;
            }
        }

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

        /* Loading animation for images */
        img {
            transition: opacity 0.3s ease;
        }

        /* Custom scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }

        ::-webkit-scrollbar-thumb {
            background: #667eea;
            border-radius: 4px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: #4f46e5;
        }

        /* Accessibility improvements */
        @media (prefers-reduced-motion: reduce) {
            * {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }

        /* Focus styles for better accessibility */
        .cta-button:focus,
        .state-card a:focus,
        .partner-link:focus {
            outline: 3px solid #4ade80;
            outline-offset: 2px;
        }}