:root {
    --brand: #004a99;
    --brand-dark: #003366;
    --text: #1a1a1a;
    --light: #f8fafc;
    --border: #d1d5db;
    --white: #ffffff;
}


* { box-sizing: border-box; margin: 0; padding: 0; }
body {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 18px; 
    color: var(--text);
    background: var(--white);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}


.site-header {
    background: var(--white);
    border-bottom: 4px solid var(--brand);
    position: sticky;
    top: 0;
    z-index: 2000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.nav-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}


@media (min-width: 768px) {
    .nav-wrap {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        height: 80px;
    }
}

.logo {
    text-decoration: none;
    color: var(--brand);
    font-weight: 900;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 8px;
}


.search-form {
    display: flex;
    width: 100%;
    max-width: 500px;
    border: 2px solid var(--text);
    border-radius: 6px;
    overflow: hidden;
}

.search-input {
    flex: 1;
    padding: 12px;
    border: none;
    font-size: 1rem;
    outline: none;
}

.search-btn {
    background: var(--text);
    color: white;
    border: none;
    padding: 0 16px;
    cursor: pointer;
    font-weight: 700;
}


.main-content { flex: 1; }

.breadcrumbs {
    background: var(--light);
    padding: 8px 16px;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
}
.breadcrumbs a { color: var(--brand); text-decoration: none; }
.breadcrumbs span { color: #666; margin: 0 4px; }


.site-footer {
    background: #1a1a1a;
    color: #e5e7eb;
    padding: 48px 16px 24px;
    margin-top: 40px;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 768px) {
    .footer-grid { grid-template-columns: 1fr 3fr; }
}

.footer-brand h4 { color: white; margin-bottom: 12px; }


.states-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

@media (min-width: 600px) { .states-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .states-grid { grid-template-columns: repeat(4, 1fr); } }

.footer-link {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.9rem;
}
.footer-link:hover { color: white; text-decoration: underline; }

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #333;
    font-size: 0.8rem;
    color: #666;
}














/*  =================================================   */












.hero-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    background: white;
}

@media (min-width: 968px) {
    .hero-section { 
        grid-template-columns: 1.1fr 1fr;
        min-height: 600px;
    }
}

.hero-content {
    padding: 80px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 900;
    color: var(--text);
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-content .subtitle {
    font-size: 1.35rem;
    color: var(--brand);
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 16px;
}

.hero-visual {
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.hero-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(0,74,153,0.05) 100%);
}

.hero-image {
    width: 100%;
    max-width: 500px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .hero-content { padding: 50px 20px; }
    .hero-content h1 { font-size: 2.3rem; }
    .hero-content .subtitle { font-size: 1.15rem; }
}


.stats-strip {
    background: var(--brand);
    color: white;
    padding: 48px 20px;
}

.stats-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item h3 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 8px;
    line-height: 1;
}

.stat-item p {
    font-size: 1.1rem;
    opacity: 0.95;
    font-weight: 600;
}


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

.section {
    margin-bottom: 100px;
}

.section-header {
    margin-bottom: 48px;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--text);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.7;
    max-width: 700px;
}


.map-showcase {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
}

@media (min-width: 968px) {
    .map-showcase { grid-template-columns: 1fr 1fr; }
}

.map-box {
    position: relative;
    border: 4px solid var(--brand);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0,0,0,0.15);
    height: 550px;
}

.map-title {
    position: absolute;
    top: 20px;
    left: 20px;
    background: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 700;
    color: var(--brand);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 1000;
    font-size: 1.1rem;
}

.map-description {
    background: white;
    padding: 40px;
    border-radius: 12px;
    border: 3px solid var(--border);
}

.map-description h3 {
    font-size: 1.9rem;
    color: var(--brand);
    margin-bottom: 20px;
    font-weight: 700;
}

.map-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 16px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 24px 0 0 0;
}

.feature-list li {
    padding: 12px 0;
    font-size: 1.05rem;
    color: #444;
    border-bottom: 1px solid #e0e0e0;
    padding-left: 30px;
    position: relative;
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--brand);
    font-weight: 900;
    font-size: 1.3rem;
}


.voiv-section {
    background: var(--light);
    padding: 80px 20px;
    margin: 100px 0;
}

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

.voiv-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.voiv-intro h2 {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--text);
    margin-bottom: 20px;
}

.voiv-intro p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.7;
}

.voiv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.voiv-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    border: 3px solid transparent;
    transition: all 0.3s ease;
}

.voiv-card:hover {
    border-color: var(--brand);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,74,153,0.15);
}

.voiv-card h3 {
    font-size: 1.5rem;
    color: var(--brand);
    font-weight: 700;
    margin: 0;
}

.voiv-stats {
    display: flex;
    gap: 24px;
    padding-top: 16px;
    border-top: 2px solid var(--border);
}

.voiv-stat {
    flex: 1;
}

.voiv-stat-num {
    display: block;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--brand);
    line-height: 1;
}

.voiv-stat-label {
    font-size: 0.9rem;
    color: #666;
    margin-top: 4px;
}


.how-section {
    background: white;
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 48px;
}

@media (min-width: 768px) {
    .steps-grid { grid-template-columns: repeat(3, 1fr); }
}

.step-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--light);
    border-radius: 12px;
    border: 2px solid var(--border);
    transition: all 0.3s ease;
}

.step-card:hover {
    border-color: var(--brand);
    box-shadow: 0 8px 30px rgba(0,74,153,0.1);
}

.step-number {
    width: 70px;
    height: 70px;
    background: var(--brand);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
    margin: 0 auto 24px;
}

.step-card h3 {
    font-size: 1.5rem;
    color: var(--text);
    margin-bottom: 16px;
    font-weight: 700;
}

.step-card p {
    color: #666;
    line-height: 1.7;
    font-size: 1.05rem;
}


.cta-section {
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
    color: white;
    padding: 80px 40px;
    border-radius: 16px;
    text-align: center;
    margin: 100px 0;
}

.cta-section h2 {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 24px;
    line-height: 1.2;
}

.cta-section p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}


.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 48px;
}

@media (min-width: 768px) {
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}

.benefit-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    border-left: 6px solid var(--brand);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.benefit-card h3 {
    font-size: 1.7rem;
    color: var(--brand);
    margin-bottom: 16px;
    font-weight: 700;
}

.benefit-card p {
    color: #555;
    line-height: 1.8;
    font-size: 1.1rem;
    margin: 0;
}






/*  =================================================   */












