
body {
    font-family: Arial, sans-serif;
    margin: 0;
    background-color: #f4f4f4;
}
header {
    background-color: #0c3c47;
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
header .logo {
    height: 50px;
}
nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}
nav ul li a {
    color: white;
    text-decoration: none;
}
main {
    padding: 20px;
}
footer {
    background-color: #0c3c47;
    color: white;
    text-align: center;
    padding: 10px;
}
.car-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}
.car-card {
    background-color: white;
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.car-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}
.filters {
    margin-bottom: 20px;
}
.banner {
    text-align: center;
    background-color: #d7f0f4;
    padding: 20px;
}
.slider {
    display: flex;
    overflow-x: auto;
    gap: 10px;
}
.slide img {
    height: 200px;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 400px;
    margin-top: 20px;
}
.contact-form input, .contact-form textarea {
    padding: 10px;
    border: 1px solid #ccc;
}
.contact-form button {
    background-color: #0c3c47;
    color: white;
    padding: 10px;
    border: none;
}
