    .states-hero {
        background: linear-gradient(135deg, #0f1f7a 0%, #0056b3 100%);
        border-radius: 10px;
        padding: 4rem 2rem;
        margin-bottom: 3rem;
    }
    .state-card {
        background: white;
        border: 2px solid #e9ecef;
        border-radius: 12px;
        padding: 1.25rem;
        text-align: center;
        transition: all 0.3s ease;
        text-decoration: none;
        color: #333;
        display: block;
        height: 100%;
    }
    .state-card:hover {
        border-color: #0f1f7a;
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(15, 31, 122, 0.15);
        color: #0f1f7a;
    }
    .state-card .state-abbr {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, #0f1f7a 0%, #0056b3 100%);
        color: white;
        border-radius: 10px;
        font-weight: 800;
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }
    .state-card .state-name {
        font-weight: 600;
        font-size: 0.95rem;
        margin-bottom: 0;
    }
    .region-title {
        color: #0f1f7a;
        font-weight: 700;
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
        padding-bottom: 0.75rem;
        border-bottom: 3px solid #0f1f7a;
    }
    .search-box {
        max-width: 500px;
        margin: 0 auto;
    }
    .search-box .form-control {
        border-radius: 50px;
        padding: 1rem 1.5rem;
        border: 2px solid rgba(255,255,255,0.3);
        background: rgba(255,255,255,0.15);
        color: white;
        font-size: 1.1rem;
    }
    .search-box .form-control::placeholder {
        color: rgba(255,255,255,0.7);
    }
    .search-box .form-control:focus {
        background: rgba(255,255,255,0.25);
        border-color: rgba(255,255,255,0.6);
        color: white;
        box-shadow: 0 0 0 0.2rem rgba(255,255,255,0.15);
    }
    .trust-banner {
        background: #f8f9fa;
        border-radius: 15px;
        padding: 2rem;
        margin-bottom: 3rem;
    }
    .trust-item {
        text-align: center;
        padding: 1rem;
    }
    .trust-icon {
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, #0f1f7a 0%, #0056b3 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 0.75rem;
        color: white;
        font-size: 1.25rem;
    }
    .cta-section {
        background: linear-gradient(135deg, #0f1f7a 0%, #0056b3 100%);
        border-radius: 15px;
        padding: 3rem 2rem;
        color: white;
    }
    .no-results {
        display: none;
        text-align: center;
        padding: 3rem;
        color: #6c757d;
    }
    .no-results.show {
        display: block;
    }
    .state-grid-item.hidden {
        display: none;
    }
