.brand-carousel-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.brand-slider {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 20px;
    flex-wrap: nowrap;
    padding: 20px 0;
}

.brand-item-slide {
    flex: 0 0 auto;
    width: 200px;
    height: 120px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.brand-item-slide:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.brand-item-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
}