.car-list {
    background-color: var(--green);
    background-image: url(../../front/images/backgrounds/pattern.png);
    background-size: cover;
    background-position: center;
}
.cars-inner{
    max-width: 1480px;
    margin: 0 auto;
    padding: 2rem 1rem;
}
.car-item-box{
    flex-basis: 31.3333%;
    margin: 1% 1%;
}
.car-item-box .car-detail {
    font-size: 17px;
    background-color: #2c2c2c;
    padding: 8px 8px;
}
.faq-container {
    background-color: #2b2b2b;
    padding: 5rem 2rem;
}
.faq-inner{
    max-width: 1440px;
    margin: 0 auto;
}
.faq-image {
    flex-basis: 40%;
    margin-right: 5%;
}
.faq-content {
    flex-basis: 55%;
}
.faq-content > .title {
    font-size: 32px;
    color: var(--cream);
    line-height: 1.4;
    margin-bottom: 2rem;
    max-width: 600px;
}
.faq-image-overlay {
    position: absolute;
    top: 0;
    right: -5%;
    max-width: 180px;
    background-color: var(--green);
    color: var(--cream);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.faq-image-overlay span {
    width: 30px;
    height: 30px;
    background-color: var(--cream);
    color: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: .5rem;
    font-size: 20px;
}
@media (max-width: 820px) {
    .car-item-box {
        flex-basis: 48%;
    }
    .faq-image {
        flex-basis: 100%;
        margin-right: 0;
    }
    .faq-image-overlay {
        left: 0;
        right: initial;
    }
    .faq-content {
        flex-basis: 100%;
        margin-top: 4rem;
    }
}
@media (max-width: 480px) {
    .car-item-box {
        flex-basis: 100%;
        margin: 1rem 0;
    }
    .car-item-box .car-detail {
        width: 100%;
    }
}