/* Контейнер блока ценностей */
.values-container {
    border: 1px solid #FBFBFB;
    border-radius: 10px;
    background: #FBFBFB;
    padding: 30px;
}

/* Колонки */
.values-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 20px;
    background: #F4F3EF;
    border-radius: 10px;
    gap: 15px;
    height: 100%; /* Добавлено для одинаковой высоты */
}

/* Заголовок с кружком */
.values-title-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

.value-title {
    color: #AFADA4;
    margin: 0;
}

.value-text {
    padding-left: 45px;
    margin: 0;
}

/* Кружок с номером */
.value-circle {
    width: 25px;
    height: 25px;
    background-color: black;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

/* Адаптив */
@media (max-width: 993px) {

    /* Для Bootstrap на мобильных */
    .col-md-4 {
        width: 100%;
    }

    .values-container {
        padding: 15px;
    }
}
