.trust-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 40px 20px;
}

.trust-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
}

.trust-icon {
    width: 5rem;
    height: 5rem;
    flex-shrink: 0;
    background-color: #052E44;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    outline: 1px dashed #BE202F;
    outline-offset: .5rem;
}

.trust-icon img {
    height: 2.5rem;
}

.trust-content h3 a,
.trust-content h3 {
    margin: 0;
    font-size: 1.25rem;
    display: block;
    color: #052E44;
    font-weight: 600;
    text-wrap-style: pretty;
}

.trust-content p {
    margin-block: .875rem;
    font-size: 1rem;
    color: #4B5563;
    line-height: 1.25;
    text-wrap-style: pretty;
}

.trust-link {
    color: #BE202F;
    text-decoration: none;
    font-weight: 600;
}

.trust-link:hover {
    text-decoration: underline;
}


.trust__img {
    width: 100%;
    object-fit: cover;
    border-radius: 1rem;
}



@media (max-width:991.98px) {
    .trust-icon {
        width: 2.25rem;
        height: 2.25rem;
        outline-offset: .25rem;
    }

    .trust-icon img {
        height: 1.25rem;
        object-fit: contain;
    }

    .trust-wrapper {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        padding: 0;
        margin-top: 2rem;
    }

    .trust-item {
        gap: 1rem;
    }

    .trust__img {
        display: none;
    }

    .trust-content h3 a,
    .trust-content h3 {
        margin: 0;
        font-size: 1.125rem;
    }

    .trust-link {
        font-size: .875rem;
    }
}