body {
    font-family: Arial, sans-serif;
    background: #f4f6f8;
    padding: 20px;
}

h1 {
    text-align: center;
    margin-bottom: 30px;
}

.container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.car {
    background: #fff;
    width: 260px;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: 0.2s;
}

.car:hover {
    transform: translateY(-5px);
}

.car img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 10px;
}

.price {
    font-size: 20px;
    color: green;
    font-weight: bold;
}

a {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 12px;
    background: #007bff;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
}