.brand-module-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 50px;
}

.brand-card:nth-child(even) {
    background: #eb5914;
}
.brand-card {
    display: block;
    padding: 20px;
    background: #2F57A3;
    text-decoration: none;

    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
    width: 400px;
    margin: 51px auto ;
}

.brand-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    outline: none;
    text-decoration: none;
}

.brand-title {
    font-size: 3rem;
    margin-bottom: 8px;
    color: #f5f5f5;
}

.brand-desc {
    font-size: 14px;
    color: #f5f5f5;
}