.hero-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.mission-quote {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.map-container {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
    min-height: 450px;
    display: flex; 
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
}

.map-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1rem;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(42, 127, 98, 0.05);
    pointer-events: none;
    border-radius: 8px;
}

.states-grid {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.state-card {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1rem;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.state-card.active {
    background: #85c1f7;
    color: white;
    border-color: #85c1f7;
}

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

.impact-card {
    background-color: #f8f9fa;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.impact-card:hover {
    transform: translateY(-5px);
}

.location-card {
    transition: transform 0.3s ease;
}

.location-card:hover {
    transform: translateY(-5px);
}

.card {
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.text-primary {
    color: #85c1f7 !important;
}

.bi {
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 40vh;
    }
    
    .mission-quote {
        margin: 0 1rem;
    }
}


.state-item h5{
    color: #0d47a1;
}
