/* Cars Preview */
#cars {
    padding: 30px 20px;
    background-color: #f8f9fa;
    text-align: center;
}
#cars-container h3 {
    color: #222;
    margin-bottom: 1.5em;
    font-size: 1.8em;
}
#cars-pre {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}
.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    justify-content: center;
    margin: 0 auto;
    max-width: 1200px;
}
.car-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 15px;
    text-align: center;
    border-bottom: 2px solid #b30000; 
    border-top: 2px solid #b30000;
}
.car-card:hover {
    transform: scale(1.05);
}
.car-card img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    border-radius: 5px;
    margin-bottom: 10px;
    border-bottom: 2px solid #b30000
}
.car-card h4 {
    color: #333;
    margin-bottom: 0.5em;
}
.car-card p {
    color: #666;
    font-size: 0.9em;
}
.book-now-button {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 15px;
    background-color: #b30000; /* Red background */
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s;
}
.book-now-button:hover {
    background-color: #cc0000; 
}
