*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial,sans-serif;
}

body{
background:#f5f7fa;
}

nav{
background:#ff6b00;
padding:20px 50px;
display:flex;
justify-content:space-between;
align-items:center;
}

.logo{
font-size:28px;
font-weight:bold;
color:white;
}

.menu a{
color:white;
text-decoration:none;
margin-left:20px;
font-weight:bold;
}

.hero{
height:90vh;
display:flex;
justify-content:center;
align-items:center;
flex-direction:column;
text-align:center;
background:linear-gradient(
135deg,
#fff8f0,
#ffe6cc
);
}

.hero h1{
font-size:70px;
color:#222;
}

.hero p{
font-size:24px;
margin-top:15px;
color:#555;
}

.btn{
margin-top:20px;
display:inline-block;
padding:15px 35px;
background:#ff6b00;
color:white;
text-decoration:none;
border-radius:10px;
}

.services{
padding:80px 20px;
display:flex;
justify-content:center;
gap:30px;
flex-wrap:wrap;
}

.card{
background:white;
padding:30px;
width:280px;
border-radius:15px;
box-shadow:0 10px 20px rgba(0,0,0,.1);
text-align:center;
transition:.3s;
}

.card:hover{
transform:translateY(-10px);
}

.form-box{
width:400px;
margin:80px auto;
background:white;
padding:30px;
border-radius:10px;
box-shadow:0 0 15px rgba(0,0,0,.1);
}

.form-box h2{
text-align:center;
margin-bottom:20px;
}

input{
width:100%;
padding:12px;
margin-bottom:15px;
border:1px solid #ddd;
border-radius:6px;
}

button{
width:100%;
padding:12px;
background:#ff6b00;
border:none;
color:white;
font-size:16px;
cursor:pointer;
border-radius:6px;
}

.footer{
background:#222;
color:white;
text-align:center;
padding:20px;
margin-top:50px;
}