#values {
    background: #fff;
    padding: 70px 0px;
}

#values h1 {
    text-align: center;
}

.values-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.value-item {
    border-bottom: 1px solid var(--site-border);
    padding-bottom: 20px;
}

.value-item-title {
    font-size: 22px;
    line-height: 1.2;
    font-weight: 600;
    display: flex;
    align-items: center;
    margin-bottom: 0px;
    color: var(--site-primary);
}

.value-item img {
    height: 40px;
    width: auto;
    display: block;
    margin-bottom: 25px;
}

.value-item-description {
    font-size: 16px;
    color: var(--site-text);
}

@media (max-width: 980px) {
    #values {
        padding: 50px 0px;
    }

    .values-list {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}