/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('https://images.unsplash.com/photo-1486262715619-67b85e0b08d3?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 150px 0 100px;
    margin-top: 76px;
}

/* Search Box */
.search-box {
    background-color: white;
    border-radius: 10px;
    padding: 25px;
    color: var(--dark);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Featured Cars Section */
.featured-cars {
    background-color: white;
}

/* Services Section */
.services-section {
    background-color: var(--light);
}

.service-card {
    padding: 20px;
    transition: all 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

/* About Section */
.about-section {
    background-color: white;
}

/* Contact Section */
.contact-section {
    background-color: var(--light);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        padding: 100px 0 60px;
        text-align: center;
    }
    
    .search-box {
        margin-top: 30px;
    }
}