.hf-brands-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    text-align: left;
}

.hf-brands-title {
    font-size: 48px;
    font-weight: 700;
    color: #0a1b32; 
    margin-bottom: 15px;
    line-height: 1.2;
}

.hf-brands-desc {
    font-size: 20px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.5;
}

.hf-brands-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.hf-brand-item {
    background: #ffffff;
    padding: 25px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ededed;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.hf-brand-item:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.hf-brand-item img {
    max-width: 80%;
    max-height: 50px;
    object-fit: contain;
}

@media (max-width: 992px) {
    .hf-brands-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .hf-brands-grid { grid-template-columns: repeat(2, 1fr); }
    .hf-brands-title { font-size: 32px; }
}