body{
    margin:0;
    font-family:Arial,sans-serif;
    background:#f4f4f4;
    color:#222;
}

header{
    background:#111;
    color:white;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 40px;
}

.logo{
    font-size:28px;
    font-weight:bold;
    color:#ff2d2d;
}

nav a{
    color:white;
    text-decoration:none;
    margin-left:20px;
}

.hero{
    background:linear-gradient(to right,#111,#444);
    color:white;
    text-align:center;
    padding:80px 20px;
}

.search-box{
    background:white;
    max-width:800px;
    margin:-40px auto 40px;
    padding:30px;
    border-radius:12px;
    box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

.search-box h2{
    text-align:center;
}

select,button{
    width:100%;
    padding:12px;
    margin-top:15px;
    border-radius:8px;
    border:1px solid #ccc;
    font-size:16px;
}

button{
    background:#ff2d2d;
    color:white;
    border:none;
    cursor:pointer;
}

.categories{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
    gap:20px;
    padding:40px;
}

.card{
    background:white;
    padding:40px 20px;
    text-align:center;
    border-radius:12px;
    box-shadow:0 2px 10px rgba(0,0,0,0.1);
    font-weight:bold;
}

footer{
    background:#111;
    color:white;
    text-align:center;
    padding:20px;
    margin-top:40px;
}
