.cars {
    position: relative;
    width: 100%;
    padding: 120px 8% 100px 8%;

    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.6)),
    url("../img/cars.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
}

.cars h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
}

.cars .subtitle {
    font-size: 18px;
    color: #bbb;
    max-width: 700px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}

.brand-icons {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.brand-item {
    width: 90px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-item img {
    max-width: 100%;
    max-height: 50px;
    object-fit: contain;
    opacity: 0.85;
    transition: 0.3s ease;
}

.brand-item img:hover {
    transform: scale(1.1);
    opacity: 1;
    cursor: pointer;
}

.cars .extra-text {
    margin-top: 40px;
    font-size: 16px;
    color: #999;
}

@media(max-width: 768px) {
    .cars h2 {
        font-size: 28px;
    }

    .brand-item {
        width: 70px;
        height: 60px;
    }

    .brand-item img {
        max-height: 40px;
    }
}