
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f5f5f5;
    color: #333;
}
header {
    background: #000;
    color: white;
    text-align: center;
    padding: 20px;
}
.logo {
    width: 200px;
    margin-bottom: 10px;
}
.whatsapp-btn {
    display: inline-block;
    margin-top: 10px;
    background: #25d366;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
}
.vehicles {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}
.vehicle {
    background: white;
    padding: 15px;
    border-radius: 10px;
    max-width: 250px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    text-align: center;
}
.vehicle img {
    width: 100%;
    border-radius: 10px;
}
footer {
    background: #222;
    color: white;
    text-align: center;
    padding: 20px;
}
footer a {
    color: #25d366;
    text-decoration: none;
}
