.trust-section {
    display: flex;
    flex-direction: column;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 40px 0;
    padding-top: 60px;
}

.trust-section1 .icons-grid {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
    margin-top: 20px;
}

.trust-section1 .icon-item {
    flex: 1;
    min-width: 100px;
    text-align: center;
}

.icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.trust-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    margin-bottom: 15px;
}

.icon-text {
    font-size: 11px;
    line-height: 1.4;
    text-transform: uppercase;
    color: #000;
    max-width: 120px;
}

@media (max-width: 1024px){
    .trust-section {
        display: flex;
        flex-direction: column;
        padding: 30px 0 40px;
        height: auto;
    }

    .trust-icon {
        width: 30px;
        height: 30px;
    }

    .icon-text {
        font-size: 10px;
    }
}

@media (max-width: 768px){
    .trust-section {
        display: flex;
        flex-direction: row;
        padding: 30px 0 40px;
        height: auto;
    }
}