.brands-section {
    width: 100%;
    padding: 0 20px 20px 20px;
    /* background-color: rgb(250, 250, 250); */
    text-align: center;
}
.brands-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 30px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}
.brand-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background-color: rgb(255, 255, 255);
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.brand-item img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}
.brand-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}
.brand-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}