*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial, sans-serif;
}

body{
line-height:1.6;
color:#333;
}

.container{
width:90%;
max-width:1100px;
margin:auto;
}

.header{
background:#111;
padding:18px 0;
}

.header-inner{
display:flex;
justify-content:space-between;
align-items:center;
}

.logo img{
height:60px;
}

nav a{
color:white;
margin-left:25px;
text-decoration:none;
font-weight:bold;
}

.hero{
height:80vh;
background-size:cover;
background-position:center;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
color:white;
position:relative;
}

.hero::before{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.4);
}

.hero-text{
position:relative;
z-index:2;
max-width:600px;
}

.hero h1{
font-size:42px;
margin-bottom:15px;
}

.hero p{
font-size:18px;
}

.btn{
display:inline-block;
margin-top:25px;
padding:12px 28px;
background:#fe7679;
color:white;
text-decoration:none;
border-radius:4px;
}

.about{
padding:90px 0;
text-align:center;
max-width:800px;
margin:auto;
}

.section-title{
text-align:center;
margin-bottom:40px;
}

.services{
background:#f4f4f4;
padding:80px 0;
}

.service-grid{
display:flex;
gap:40px;
justify-content:center;
flex-wrap:wrap;
}

.service{
background:white;
padding:35px;
border-radius:6px;
text-align:center;
width:260px;
display:flex;
flex-direction:column;
align-items:center;
}

.service img{
width:80px;
height:80px;
object-fit:contain;
margin-bottom:18px;
}

.service h3{
font-size:16px;
}

.cta{
padding:80px 0;
text-align:center;
}

footer{
background:#222;
color:white;
text-align:center;
padding:22px;
}