.brands-section {
    padding: 60px 20px;
    background-color: #fff;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.brand-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.brand-card:hover {
    border-color: #1e40af;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(30, 64, 175, 0.1);
}

.brand-card img {
    max-width: 100%;
    height: 120px;
    object-fit: contain;
    margin-bottom: 15px;
}

.brand-card h3 {
    color: #1e40af;
    font-size: 18px;
}

@media (max-width: 768px) {
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
