/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

/* Header and Navigation */
.header {
    background: #ffffff;
    color: #333;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2563eb;
    text-decoration: none;
}

/* Desktop Navigation */
.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

.nav-menu a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    position: relative;
}

.nav-menu a:hover {
    background: #f1f5f9;
    color: #2563eb;
}

/* Navigation Dropdowns */
.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    min-width: 300px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 1rem;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-section h4 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.dropdown-links {
    margin-bottom: 0.5rem;
}

.dropdown-links a {
    display: block;
    padding: 8px 12px;
    color: #333;
    text-decoration: none;
    font-size: 0.9rem;
    border-radius: 4px;
    transition: background 0.2s;
}

.dropdown-links a:hover {
    background: #f0f0f0;
    color: #2563eb;
}

.dropdown-btn {
    display: block;
    background: #2563eb;
    color: white;
    padding: 8px 16px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
    transition: background 0.3s;
}

.dropdown-btn:hover {
    background: #1d4ed8;
    color: white;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

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

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

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: white;
    padding: 6rem 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.search-box {
    display: flex;
    max-width: 600px;
    margin: 0 auto;
    gap: 10px;
    background: white;
    border-radius: 50px;
    padding: 5px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.search-box input {
    flex: 1;
    padding: 20px 25px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    outline: none;
    color: #333;
}

.search-box button {
    padding: 20px 40px;
    background: #2563eb;
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.search-box button:hover {
    background: #1d4ed8;
}

/* Stats Section */
.stats {
    padding: 4rem 0;
    background: #f8fafc;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 1.1rem;
    color: #64748b;
    font-weight: 500;
}

/* Directory Highlights */
.directory-highlights {
    padding: 5rem 0;
    background: white;
}

.directory-highlights h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

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

.highlight-card {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.highlight-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.highlight-card p {
    color: #64748b;
    font-weight: 500;
}

.highlights-cta {
    text-align: center;
}

/* Formation Options */
.formation-options {
    padding: 5rem 0;
    background: #f8fafc;
}

.formation-options h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.formation-options > .container > p {
    text-align: center;
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.option-card {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    position: relative;
}

.option-badge {
    position: absolute;
    top: -15px;
    left: 30px;
    background: #2563eb;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.option-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.option-card ul {
    list-style: none;
    margin-bottom: 2rem;
}

.option-card li {
    padding: 0.5rem 0;
    color: #64748b;
    position: relative;
    padding-left: 1.5rem;
}

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

/* Choice Guide */
.choice-guide {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.choice-guide h3 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #1e293b;
}

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

.choice-item {
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 8px;
    color: #64748b;
}

/* Top Cities */
.top-cities {
    padding: 5rem 0;
    background: white;
}

.top-cities h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.top-cities > .container > p {
    text-align: center;
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.city-card {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

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

.city-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.city-card p {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.city-card span {
    display: block;
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.city-link {
    display: inline-block;
    background: #2563eb;
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s;
}

.city-link:hover {
    background: #1d4ed8;
    color: white;
}

.cities-cta {
    text-align: center;
}

/* Browse States */
.browse-states {
    padding: 5rem 0;
    background: #f8fafc;
}

.browse-states h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1e293b;
}

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

.state-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.state-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

/* Business Tools */
.business-tools {
    padding: 5rem 0;
    background: white;
}

.business-tools h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.business-tools > .container > p {
    text-align: center;
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.tool-card {
    background: #f8fafc;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

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

.tool-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #10b981;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.tool-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.tool-card p {
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.tools-features {
    text-align: center;
    background: #f8fafc;
    padding: 3rem;
    border-radius: 12px;
}

.tools-features h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #1e293b;
}

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

.feature {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 500;
    color: #64748b;
}

/* LLC Guides */
.llc-guides {
    padding: 5rem 0;
    background: #f8fafc;
}

.llc-guides h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.llc-guides > .container > p {
    text-align: center;
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.guide-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.guide-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.guide-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.guide-card p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.guide-card ul {
    list-style: none;
    margin-bottom: 2rem;
}

.guide-card li {
    padding: 0.3rem 0;
    color: #64748b;
    position: relative;
    padding-left: 1.5rem;
}

.guide-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
}

.guides-cta {
    text-align: center;
}

/* Interactive Tools */
.interactive-tools {
    padding: 5rem 0;
    background: white;
}

.interactive-tools h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.interactive-tools > .container > p {
    text-align: center;
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.interactive-card {
    background: #f8fafc;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.interactive-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.interactive-card p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.interactive-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.badge {
    background: #2563eb;
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.interactive-features {
    text-align: center;
    background: #f8fafc;
    padding: 3rem;
    border-radius: 12px;
}

.interactive-features h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #1e293b;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background: #2563eb;
    color: white;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary:hover {
    background: #1d4ed8;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
    display: inline-block;
    background: #f1f5f9;
    color: #2563eb;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.btn-secondary:hover {
    background: #e2e8f0;
    color: #1d4ed8;
    border-color: #2563eb;
}

.btn-outline {
    display: inline-block;
    background: transparent;
    color: #2563eb;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    border: 2px solid #2563eb;
}

.btn-outline:hover {
    background: #2563eb;
    color: white;
}

/* Footer */
.footer {
    background: #1e293b;
    color: white;
    padding: 4rem 0 2rem;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1.5rem;
    color: white;
}

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

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

.footer-section a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: white;
}

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

/* LLC Services Section */
.llc-services-section {
    background: white;
    padding: 3rem 0;
    margin-bottom: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.llc-services-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.llc-services-section p {
    text-align: center;
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 2rem;
}

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

.llc-service-card {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    border: 2px solid transparent;
}

.llc-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-color: #2563eb;
}

.llc-service-card.featured {
    border: 3px solid #2563eb;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    transform: scale(1.02);
    position: relative;
}

.llc-service-card.featured:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.2);
}

.featured-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(245, 158, 11, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 3px 10px rgba(245, 158, 11, 0.3);
    }
    50% {
        box-shadow: 0 3px 20px rgba(245, 158, 11, 0.5);
    }
    100% {
        box-shadow: 0 3px 10px rgba(245, 158, 11, 0.3);
    }
}

.service-btn.featured-btn {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    font-size: 1.1rem;
    padding: 15px 30px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

.service-btn.featured-btn:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.service-rank {
    position: absolute;
    top: -10px;
    left: 20px;
    background: #2563eb;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 1.2rem;
    font-weight: bold;
    box-shadow: 0 3px 10px rgba(37, 99, 235, 0.3);
}

.llc-service-card h3 {
    font-size: 1.4rem;
    margin: 1rem 0 1rem 0;
    color: #1e293b;
    font-weight: 600;
}

.service-price {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2563eb;
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 8px;
    display: inline-block;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.service-features span {
    font-size: 0.9rem;
    color: #64748b;
    padding: 0.3rem 0;
}

.service-btn {
    display: inline-block;
    background: #2563eb;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.service-btn:hover {
    background: #1d4ed8;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

/* Business Listings */
.business-list {
    margin-top: 2rem;
}

.business-list-header {
    text-align: center;
    margin-bottom: 2rem;
}

.business-list-header h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.business-count {
    color: #64748b;
    font-size: 1.1rem;
    font-weight: 500;
}

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

.pagination-controls {
    text-align: center;
    margin-top: 2rem;
    padding: 2rem 0;
    border-top: 1px solid #e2e8f0;
}

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

.business-card:hover {
    transform: translateY(-2px);
}

.business-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.business-info {
    display: grid;
    gap: 0.5rem;
}

.business-info div {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.business-info i {
    font-size: 1.2rem;
}

/* Page Title */
.page-title {
    background: white;
    padding: 3rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.page-title h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.page-title p {
    color: #64748b;
    font-size: 1.1rem;
}

/* Breadcrumb */
.breadcrumb {
    background: #f8fafc;
    padding: 1rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.breadcrumb a {
    color: #2563eb;
    text-decoration: none;
}

.breadcrumb span {
    color: #64748b;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    /* Mobile Menu Toggle */
    .mobile-menu-toggle {
        display: flex;
    }
    
    /* Hide desktop navigation on mobile */
    .nav-menu {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 0;
        box-shadow: 0 4px 20px rgba(0,0,0,0.2);
        z-index: 1000;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        animation: slideDown 0.3s ease;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        margin: 0;
        padding: 0;
        border-bottom: 1px solid #e2e8f0;
    }
    
    .nav-menu a {
        display: block;
        padding: 1.2rem 2rem;
        text-align: center;
        font-size: 1.1rem;
        font-weight: 600;
        border-radius: 0;
        transition: all 0.3s;
        color: #333;
    }
    
    .nav-menu a:hover {
        background: #f1f5f9;
        transform: none;
        color: #2563eb;
    }
    
    .nav-menu a::after {
        display: none;
    }
    
    /* Mobile navigation dropdowns */
    .nav-dropdown {
        position: static;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: 1px solid #e2e8f0;
        margin-top: 0.5rem;
        min-width: auto;
        background: #f8fafc;
    }
    
    .dropdown-section {
        padding: 1rem;
    }
    
    .dropdown-section h4 {
        color: #333;
    }
    
    .dropdown-links a {
        color: #333;
    }
    
    .dropdown-links a:hover {
        background: #e2e8f0;
        color: #2563eb;
    }
    
    /* Hero Section Mobile */
    .hero {
        padding: 4rem 0;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        line-height: 1.2;
    }
    
    .hero-content p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        line-height: 1.5;
    }
    
    .search-box {
        flex-direction: column;
        gap: 1rem;
        max-width: 100%;
        background: transparent;
        box-shadow: none;
        padding: 0;
    }
    
    .search-box input {
        padding: 15px 20px;
        font-size: 1rem;
        border-radius: 25px;
        background: white;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .search-box button {
        padding: 15px 30px;
        font-size: 1rem;
        border-radius: 25px;
        width: 100%;
    }
    
    /* Stats Section */
    .stats {
        padding: 3rem 0;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .stat-item h3 {
        font-size: 2.5rem;
    }
    
    .stat-item p {
        font-size: 1rem;
    }
    
    /* Sections */
    .directory-highlights,
    .formation-options,
    .top-cities,
    .browse-states,
    .business-tools,
    .llc-guides,
    .interactive-tools {
        padding: 3rem 0;
    }
    
    .directory-highlights h2,
    .formation-options h2,
    .top-cities h2,
    .browse-states h2,
    .business-tools h2,
    .llc-guides h2,
    .interactive-tools h2 {
        font-size: 2rem;
    }
    
    .highlights-grid,
    .options-grid,
    .cities-grid,
    .states-grid,
    .tools-grid,
    .guides-grid,
    .interactive-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .option-card,
    .tool-card,
    .guide-card,
    .interactive-card {
        padding: 2rem;
    }
    
    .choice-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-section ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    /* LLC Services */
    .llc-services-section {
        padding: 2rem 0;
        margin-bottom: 2rem;
    }
    
    .llc-services-section h2 {
        font-size: 2rem;
    }
    
    .llc-services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .llc-service-card {
        padding: 1.5rem;
    }
    
    .llc-service-card h3 {
        font-size: 1.2rem;
    }
    
    .service-price {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.5rem;
    }
    
    /* Small Mobile Menu */
    .nav-menu a {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    /* Small Mobile Hero */
    .hero {
        padding: 3rem 0;
    }
    
    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.1;
    }
    
    .hero-content p {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .search-box input {
        padding: 12px 16px;
        font-size: 0.9rem;
    }
    
    .search-box button {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    /* Small Mobile Content */
    .directory-highlights h2,
    .formation-options h2,
    .top-cities h2,
    .browse-states h2,
    .business-tools h2,
    .llc-guides h2,
    .interactive-tools h2 {
        font-size: 1.8rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat-item h3 {
        font-size: 2rem;
    }
    
    .stat-item p {
        font-size: 0.9rem;
    }
    
    .page-title h1 {
        font-size: 1.8rem;
    }
    
    .page-title p {
        font-size: 0.9rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    /* Small Mobile Footer */
    .footer-content {
        gap: 1.5rem;
    }
    
    .footer-section h3 {
        font-size: 1.2rem;
    }
    
    .footer-section h4 {
        font-size: 1rem;
    }
}

/* Mobile Menu Animations */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 999;
}

.mobile-menu-overlay.active {
    display: block;
}

/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden;
}

/* Privacy Policy Page */
.privacy-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.privacy-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.privacy-section h2 {
    color: #1e293b;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 0.5rem;
}

.privacy-section h3 {
    color: #2563eb;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.privacy-section p {
    color: #475569;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.privacy-section ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.privacy-section li {
    color: #475569;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.no-collection-notice {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 2px solid #2563eb;
    border-radius: 10px;
    padding: 1.5rem;
    margin: 1rem 0;
}

.no-collection-notice h3 {
    color: #1e40af;
    margin-bottom: 1rem;
}

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

.contact-item {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #2563eb;
}

.contact-item h4 {
    color: #1e293b;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-item p {
    color: #475569;
    margin-bottom: 0;
}

.contact-item a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
}

.contact-item a:hover {
    text-decoration: underline;
}

.privacy-footer {
    background: #f1f5f9;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    margin-top: 2rem;
}

.privacy-footer p {
    color: #64748b;
    margin-bottom: 0.5rem;
}

/* Privacy Policy Mobile Responsive */
@media (max-width: 768px) {
    .privacy-section {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .privacy-section h2 {
        font-size: 1.5rem;
    }
    
    .privacy-section h3 {
        font-size: 1.2rem;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-item {
        padding: 1rem;
    }
}

/* Contact Page */
.contact-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.contact-intro {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.contact-intro h2 {
    color: #1e293b;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-intro p {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.6;
}

.contact-form-container {
    margin-bottom: 3rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
}

.contact-form-container iframe {
    border: none;
    width: 100%;
    min-height: 800px;
}

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

.contact-info-section h3 {
    color: #1e293b;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

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

.contact-method {
    text-align: center;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 8px;
    border-left: 4px solid #2563eb;
}

.contact-method h4 {
    color: #1e293b;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-method p {
    color: #64748b;
    margin-bottom: 0;
    line-height: 1.6;
}

.contact-method a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
}

.contact-method a:hover {
    text-decoration: underline;
}

/* Contact Page Mobile Responsive */
@media (max-width: 768px) {
    .contact-intro {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .contact-intro h2 {
        font-size: 1.5rem;
    }
    
    .contact-form-container iframe {
        min-height: 600px;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-method {
        padding: 1rem;
    }
}