*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:Arial, Helvetica, sans-serif;
  background:#ffffff;
  color:#222;
}

.hero{
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:60px 10%;
  gap:50px;
  background:#f4fff7;
  flex-wrap:wrap;
}

.hero-text{
  flex:1;
}

.hero-text h1{
  font-size:70px;
  color:#14532d;
}

.hero-text h2{
  font-size:32px;
  margin-bottom:20px;
  color:#166534;
}

.hero-text p{
  font-size:18px;
  line-height:1.6;
  margin-bottom:30px;
  max-width:600px;
}


.buttons{
  display:flex;
  gap:15px;
  flex-wrap:wrap;
}

.btn{
  background:#14532d;
  color:white;
  padding:15px 30px;
  border-radius:10px;
  text-decoration:none;
  transition:0.3s;
}

.btn:hover{
  background:#0f3f22;
}

.btn-outline{
  border:2px solid #14532d;
  color:#14532d;
  padding:15px 30px;
  border-radius:10px;
  text-decoration:none;
}
.hero-image img{
  width: 100%;
  max-width: 550px;
  border-radius: 20px;
  object-fit: cover;
  margin: 40px;
}
.about-image img{
  width: 100%;
  max-width: 550px;
  border-radius: 20px;
  object-fit: cover;
  margin: 40px;
}
.hero-image,
.about-image{
  background:#d1fae5;
  border-radius:20px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:24px;
  font-weight:bold;
}

.about{
  padding:100px 10%;
  display:flex;
  gap:50px;
  align-items:center;
  flex-wrap:wrap;
}

.about-text{
  flex:1;
}

.about-text h3{
  font-size:40px;
  margin-bottom:20px;
  color:#14532d;
}

.about-text p{
  margin-bottom:20px;
  line-height:1.7;
}

.services{
  padding:100px 10%;
  background:#14532d;
  color:white;
}

.services h3{
  text-align:center;
  font-size:40px;
  margin-bottom:50px;
}

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

.card{
  background:white;
  color:#14532d;
  padding:30px;
  border-radius:20px;
  font-weight:bold;
  transition:0.3s;
}

.card:hover{
  transform:translateY(-5px);
}

.contact{
  padding:100px 10%;
  text-align:center;
  background:#f4fff7;
}

.contact h3{
  font-size:40px;
  margin-bottom:20px;
  color:#14532d;
}

.contact p{
  margin-bottom:30px;
  font-size:18px;
}

footer{
  background:#14532d;
  color:white;
  text-align:center;
  padding:40px;
}

footer h4{
  font-size:28px;
  margin-bottom:10px;
}
.card{
  background:white;
  color:#14532d;
  padding:30px;
  border-radius:20px;
  font-weight:bold;
  transition:0.3s;
}

.card i{
  font-size:40px;
  margin-bottom:20px;
  color:#166534;
}

.card h4{
  font-size:20px;
  line-height:1.4;
}
@media(max-width:900px){

  .hero{
    flex-direction:column;
  }

  .about{
    flex-direction:column;
  }

  .hero-text h1{
    font-size:50px;
  }

}