.container {
    max-width: 800px;
    margin: 0 auto;
}

.row {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.row img {
    width: 50%;
    height: auto;
    border-radius: 5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.row img:hover {
    transform: scale(1.05);
}

.row .text {
    width: 50%;
    padding: 10px;
}

.reverse {
    flex-direction: row-reverse;
}

.brands1-section-area .brand-box {
    padding: 20px 10px 20px;
}

.brand-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.brand-box img {
    width: 300px;
    height: auto;
}

h2 {
    line-height: 1.6;
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- АДАПТАЦИЯ ДЛЯ МОБИЛЬНЫХ --- */
@media (max-width: 768px) {
    .row {
        flex-direction: column;
        text-align: center;
    }

    .row img,
    .row .text {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .row .text {
        padding: 5px;
    }
}
