.car-carousel {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: -10px; /* Negative margin to counteract item margins */
}

.car-carousel-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    margin: 10px 0; /* Margin between rows */
}

.car-carousel-item {
    width: calc(33.33% - 20px); /* Adjust width for 3 items per row with margins */
    margin-bottom: 20px; /* Margin between items */
    text-align: center;
}

.car-carousel-item img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .car-carousel-item {
        width: calc(50% - 20px); /* 2 items per row on tablets */
    }
}

@media (max-width: 768px) {
    .car-carousel-item {
        width: 100%; /* 1 item per row on mobile */
    }
}
