.about-trust-states{
    width: 100%;
    height: auto;
    display: flex;
    position: relative;
    /* Subtle minimal texture - very light effect */
    background-image:
        /* tiny dot matrix - barely visible */
        radial-gradient(circle, rgba(30, 58, 138, 0.008) 1px, rgba(30, 58, 138, 0.00) 2px),
        /* soft subtle wash */
        radial-gradient(circle at 15% 25%, rgba(30, 58, 138, 0.003), transparent 50%);
    background-size: 20px 20px, 800px 800px;
    background-position: 0 0, 0 0;
    mix-blend-mode: normal;
    opacity: 1;
    border-bottom: 1px solid rgba(30, 58, 138, 0.1);
}
.trust-state {
    padding: var(--section-gap);
    width: 100%;
    height: auto;
    position: relative;
    display: flex;
    color: var(--dark-blue);
    /* background-color: var(--light-white); */
}

.trust-state img {
    width: 100%;
    height: auto;
    object-fit: cover;
    color: var(--dark-font);
    /* filter: brightness(0) saturate(100%) invert(24%) sepia(67%) saturate(1336%) hue-rotate(213deg) brightness(90%) contrast(93%); */
    filter: brightness(0) saturate(100%) invert(11%) sepia(31%) saturate(1460%) hue-rotate(182deg) brightness(92%) contrast(95%);
}




.trust-states-container {
    width: 100%;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.trust-state-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    position: relative;
    /* flex: 1 1 200px; */
    width: max-content;
}



.trust-state-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.trust-state-content h1 {
    font-size: var(--small-head);
    font-weight: 600;
        color: var(--dark-blue);

}

.trust-state-content p {
    font-size: var(--mini-text);
    color: var(--dark-blue);
    opacity: 0.8;
}

@media (max-width: 1000px) {
    .trust-states-container {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
        align-items: center;
    }

    .trust-state-item::after {
        content: none;
    }

    .trust-state-item {
        width: 100%;
    }
}

@media (max-width: 576px) {

   
    .trust-states-container img {
        width: 70%;
        height: auto;
        object-fit: cover;
    }

    .trust-state-item {
        width: 100%;
    }
}

/* small mobile */
@media (max-width: 350px) {
     .trust-states-container {
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        gap: var(--space-md);
    }
    
}