/* Reset some default styles for consistency */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}

/* Style for the product card container */
.product-card {
    width: 300px;
    border: 1px solid #ccc;
    margin: 20px;
    padding: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Style for the product image */
.product-card img {
    width: 100%;
    height: auto;
    display: block;
}

/* Style for the product details */
.product-details {
    padding: 10px;
}

/* Style for the Year, Make, and Model */
.year,
.make,
.model {
    font-size: 16px;
    margin-bottom: 8px;
}

/* Customize as needed */
