*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial,sans-serif;
}

body{
background:#fff;
color:#333;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

header{
background:#c2185b;
color:white;
padding:15px 0;
}

.nav{
display:flex;
justify-content:space-between;
align-items:center;
}

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

.hero{
height:600px;
background:url('../images/hero.jpg') center/cover;
}

.overlay{
background:rgba(0,0,0,0.5);
height:100%;
display:flex;
justify-content:center;
align-items:center;
}

.hero-content{
text-align:center;
color:white;
}

.hero-content h1{
font-size:50px;
margin-bottom:20px;
}

.btn{
display:inline-block;
padding:12px 25px;
background:#ff4081;
color:white;
text-decoration:none;
border-radius:5px;
}

.search-box{
padding:60px 0;
text-align:center;
}

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

select, button, input, textarea{
padding:12px;
border:1px solid #ddd;
border-radius:5px;
}

button{
background:#c2185b;
color:white;
cursor:pointer;
}

.cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
margin-top:30px;
}

.card{
background:white;
border-radius:10px;
overflow:hidden;
box-shadow:0 3px 10px rgba(0,0,0,.1);
}

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

.card h3,
.card p{
padding:10px 15px;
}

.why-us{
padding:70px 0;
background:#f8f8f8;
}

.features{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
margin-top:30px;
}

.features div{
background:white;
padding:25px;
border-radius:10px;
}

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

.contact-section{
padding:60px 0;
}

.contact-section form{
display:flex;
flex-direction:column;
gap:15px;
max-width:600px;
}

textarea{
height:150px;
}

@media(max-width:768px){

.nav{
flex-direction:column;
gap:10px;
}

.hero-content h1{
font-size:32px;
}

.features{
grid-template-columns:1fr;
}

}