.partners {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 46px;
    padding: 60px 20px;
    background: #3530FA;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    margin-bottom: 60px;
}

.partners-title {
    text-align: center;
    font-weight: 700;
    font-size: 50px;
    line-height: 1.2;
    margin: 0;
}

.partners-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    width: 100%;
    max-width: 1100px;
}

.partner-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 30px;
    border: 1px solid #fff;
    border-radius: 25px;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    -webkit-transition: transform 0.2s ease;
    -o-transition: transform 0.2s ease;
    transition: transform 0.2s ease;
}

.shops {
    max-width: 270px;
}

.sales {
    max-width: 323px;
}

.loans {
    max-width: 421px;
}

.partner-card:hover {
    transform: translateY(-5px);
}

.partner-text {
    font-weight: 400;
    font-size: 20px;
    line-height: 1.3;
    margin: 0;
}

.icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    overflow: hidden;
}

.icon img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 992px) {
    .partners-title {
        font-size: 36px;
    }

    .partner-card {
        padding: 20px;
    }

    .partner-text {
        font-size: 18px;
    }

}

@media (max-width: 768px) {
    .partners {
        gap: 30px;
        padding: 40px 15px;
    }

    .partners-title {
        font-size: 23px;
        line-height: 1.2;
    }

    .shops {
        width: 190px;
    }

    .sales {
        width: 240px;
    }

    .loans {
        width: 293px;
    }
    .partner-text {
        font-size: 16px;
    }
}
