*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Poppins, sans-serif;
}

body{
line-height:1.6;
color:#333;
}

header{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 8%;
background:#fff;
box-shadow:0 2px 8px rgba(0,0,0,0.1);
}

.logo img{
height:60px;
}

nav a{
margin-left:30px;
text-decoration:none;
color:#333;
font-weight:500;
}

nav a:hover{
color:#d60000;
}

.hero{
height:90vh;
background:url('https://images.unsplash.com/photo-1557838923-2985c318be48') center/cover;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
color:white;
}

.hero h1{
font-size:50px;
margin-bottom:10px;
}

.btn{
background:#d60000;
color:white;
padding:12px 25px;
text-decoration:none;
border-radius:4px;
}

section{
padding:70px 10%;
}

.section-title{
text-align:center;
margin-bottom:40px;
}

.services{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
}

.card{
padding:25px;
background:white;
border-radius:8px;
box-shadow:0 4px 15px rgba(0,0,0,0.08);
}

footer{
background:#111;
color:#ccc;
text-align:center;
padding:20px;
margin-top:40px;
}

.contact-box{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
}

form input,form textarea{
width:100%;
padding:12px;
margin-bottom:12px;
border:1px solid #ccc;
border-radius:4px;
}

form button{
background:#d60000;
color:white;
border:none;
padding:12px;
width:100%;
}