/* Применяем к секции */
#rec1436867781 {
    background-image: url('https://static.tildacdn.com/tild3035-3232-4162-a165-393431353331/fon4.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    padding: 50px 20px;
    position: relative;
}

#rec1436867781::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    z-index: 1;
}

#rec1436867781 > div {
    position: relative;
    z-index: 2;
}

/* 🔥 Ключевая часть: центрируем .t-row БЕЗ flex на контейнере */
#rec1436867781 .t-row {
    display: flex !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    max-width: 800px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
    box-sizing: border-box !important;
}

/* Колонки внутри — растягиваем на 50% на десктопе, 100% на мобилке */
#rec1436867781 .t-row > .t-col {
    flex: 0 0 50% !important;
    max-width: 50% !important;
    padding: 0 15px !important;
    box-sizing: border-box !important;
}

/* Мобильная адаптация */
@media (max-width: 768px) {
    #rec1436867781 {
        padding: 30px 15px;
        background-size: contain;
    }

    #rec1436867781 .t-row > .t-col {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
}

@media (max-width: 480px) {
    #rec1436867781 {
        background-size: auto 100%;
        padding: 20px 10px;
    }
}