

/* Brands Section */
.brands-section-wrapper {
    background-color: #191d1a;
    padding: 60px 0;
    color: white;
}

.brands-content-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.brands-text-area {
    flex: 1;
}

.brands-section-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.brands-description-text {
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 400px;
}

.brands-divider-line {
    width: 2px;
    height: 200px;
    background-color: white;
    flex-shrink: 0;
}

.brands-logos-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: center;
}

.brand-logo-placeholder {
    background-color: rgba(255, 255, 255, 0.2);
    height: 60px;
    border-radius: 4px;
    backdrop-filter: blur(10px);
}

@media (max-width: 992px) {
    .brands-content-container {
        flex-direction: column;
        gap: 40px;
    }

    .brands-divider-line {
        width: 100%;
        height: 2px;
    }

    .brands-text-area {
        text-align: center;
    }

    .brands-description-text {
        margin: 0 auto;
    }

    .brands-logos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 768px) {
 
    .brands-section-title {
        font-size: 1.5rem;
    }

    .brands-logos-grid {
        grid-template-columns: 1fr;
    }
}

