.hero{
    background:linear-gradient(135deg,#0b1d4d,#123b8a);
    color:white;
    text-align:center;
    padding:100px 20px;
}

.hero-content{
    max-width:1000px;
    margin:auto;
}

.hero h1{
    font-size:56px;
    margin-bottom:15px;
}

.hero p{
    font-size:22px;
    margin-bottom:40px;
}

.search-form{
    display:flex;
    gap:15px;
    justify-content:center;
    flex-wrap:wrap;
}

.search-form select,
.search-form input{
    padding:15px;
    border:none;
    border-radius:10px;
    min-width:200px;
}

.search-form button{
    padding:15px 30px;
    border:none;
    border-radius:10px;
    background:#ff9800;
    color:white;
    font-weight:bold;
    cursor:pointer;
}
.hero-stats{
    margin-top:60px;

    display:flex;
    justify-content:center;
    gap:60px;
    flex-wrap:wrap;
}

.hero-stat{
    text-align:center;
}

.hero-stat h3{
    color:#ff9800;
    font-size:38px;
    font-weight:800;
    margin-bottom:8px;
}

.hero-stat p{
    color:#dce6ff;
    font-size:16px;
}

.latest-cars{
    padding:80px 20px;
    background:#f8f9fc;
}

.latest-cars h2{
    text-align:center;
    font-size:38px;
    color:#123b8a;
    margin-bottom:40px;
}

.car-grid{
    max-width:1200px;
    margin:auto;

    display:grid;

    grid-template-columns:
        repeat(auto-fit,minmax(260px,1fr));

    gap:25px;
}

.car-card{
    background:#fff;

    border-radius:16px;

    overflow:hidden;

    box-shadow:0 6px 18px rgba(0,0,0,0.08);

    transition:.25s;
}

.car-card:hover{
    transform:translateY(-5px);
}

.car-card img{
    width:100%;
    height:200px;
    object-fit:cover;
}

.car-info{
    padding:18px;
}

.car-info h3{
    margin-bottom:10px;
    color:#123b8a;
}

.price{
    font-size:24px;
    font-weight:700;
    color:#ff9800;
    margin:12px 0;
}

.view-btn{
    display:inline-block;

    background:#123b8a;

    color:#fff;

    text-decoration:none;

    padding:10px 16px;

    border-radius:8px;
}