/* Brands showcase section */
.brands-showcase {
    padding: 40px 0;
    text-align: center;
    background-color: #f8f8f8;
    margin: 0;
}

.brands-showcase__title {
    font-size: 24px;
    font-weight: 500;
    color: #333;
    margin-bottom: 30px;
}

.brands-showcase__list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.brands-showcase__logo {
    height: 70px;
    width: auto;
    transition: transform 0.3s ease;
}

.brands-showcase__logo:hover {
    transform: scale(1.05);
}

/* Media queries */
@media (max-width: 768px) {
    .brands-showcase__list {
        gap: 30px;
    }
    
    .brands-showcase__logo {
        height: 50px;
    }
    
    .brands-showcase__title {
        font-size: 20px;
    }
}
