*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

body{
    background:#f5f5f5;
}

.top{
    width:100%;
    height:8px;
    background:#4CAF50;
}

.banner{
    background:white;
    text-align:center;
    padding:60px 20px;
}

.banner h1{
    font-size:55px;
    margin-bottom:15px;
}

.banner p{
    font-size:22px;
    color:#555;
    margin-bottom:25px;
}

.banner input{
    width:400px;
    max-width:90%;
    padding:14px;
    border:1px solid #ccc;
    border-radius:8px;
    font-size:16px;
}

.container{
    width:95%;
    margin:40px auto;
    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:20px;
}

.card{
    width:300px;
    background:white;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 5px 15px rgba(0,0,0,.2);
    transition:0.3s;
}

.card:hover{
    transform:translateY(-8px);
}

.card img{
    width:100%;
    height:400px;
    object-fit:cover;
}

.info{
    text-align:center;
    padding:20px;
}

.info h2{
    margin-bottom:15px;
    font-size:30px;
}

.price{
    color:#d32f2f;
    font-size:28px;
    font-weight:bold;
    margin-bottom:20px;
}

button{
    background:#4CAF50;
    color:white;
    border:none;
    padding:12px 25px;
    border-radius:8px;
    font-size:18px;
    cursor:pointer;
}

button:hover{
    background:#388E3C;
}