/* Bottom brands section */
.bottom-brands {
    text-align: center;
    padding: 30px 0;
    background: #f8f8f8;
}

.bottom-brands__title {
    font-size: 18px;
    color: #333;
    margin-bottom: 25px;
}

.bottom-brands__list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    max-width: 800px;
    margin: 0 auto;
}

.bottom-brands__logo {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}

.bottom-brands__logo:hover {
    transform: scale(1.1);
}

/* Media queries */
@media (max-width: 768px) {
    .bottom-brands__list {
        flex-wrap: wrap;
        gap: 30px;
    }
    
    .bottom-brands__logo {
        height: 50px;
    }
}
