*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial;
}

body{
line-height:1.6;
}

.header{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px;
background:#0f3d2e;
color:white;
}

.logo img{
height:50px;
}

nav ul{
display:flex;
list-style:none;
}

nav ul li{
margin-left:20px;
}

nav ul li a{
color:white;
text-decoration:none;
font-weight:bold;
}

.hero{
height:90vh;
background:url('../images/hero.jpg') center/cover no-repeat;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
color:white;
}

.hero-text h1{
font-size:48px;
margin-bottom:10px;
}

.hero-text p{
font-size:20px;
margin-bottom:20px;
}

.btn{
background:#27ae60;
color:white;
padding:12px 25px;
text-decoration:none;
border-radius:5px;
}

.about{
padding:80px 20px;
text-align:center;
}

.services{
display:flex;
justify-content:center;
gap:40px;
padding:80px 20px;
flex-wrap:wrap;
}

.service{
width:350px;
text-align:center;
}

.service img{
width:100%;
border-radius:10px;
margin-bottom:15px;
}

.team{
background:#f4f4f4;
padding:80px 20px;
text-align:center;
}

.team-members{
display:flex;
justify-content:center;
gap:40px;
margin-top:40px;
flex-wrap:wrap;
}

.member{
background:white;
padding:30px;
border-radius:10px;
width:250px;
}

.contact{
padding:80px 20px;
text-align:center;
}

footer{
background:#0f3d2e;
color:white;
text-align:center;
padding:20px;
}