
.trust-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f5f3ef;
    padding: 18px 40px;
   /*
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
*/
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-right: 35px;
    border-right: 1px solid #e2e2e2;
    min-width: 240px;
}

.trust-item:last-child {
    border-right: none;
    padding-right: 0;
}

.trust-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.trust-icon svg {
    width: 100%;
    height: 100%;
    stroke: #111;
    stroke-width: 1.8;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.trust-text h4 {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    color: #111;
    line-height: 1.3;
}

.trust-text p {
    margin: 2px 0 0;
    font-size: 13px;
    color: #666;
    line-height: 1.4;
}

@media (max-width: 768px) {

    .trust-bar {
        padding: 20px;
        gap: 20px;
    }

    .trust-item {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #e5e5e5;
        padding-right: 0;
        padding-bottom: 15px;
    }

    .trust-item:last-child {
        border-bottom: none;
    }
}
