body {
  
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}


/* NAVBAR */
.navbar{
  width:100%;
  background:#fff;
  box-shadow:0 6px 18px rgba(0,0,0,.08);
  position:sticky;
  top:0;
  z-index:1000;
  padding: 0;
}

.nav-container{
  max-width:1200px;
  margin:auto;
  padding:14px 20px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.logo{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  font-weight:700;
  font-size:1.2rem;
  color:#1f7a3f;
}

.logo img{
  height:42px;
}

.nav-links{
  display:flex;
  align-items:center;
  gap:26px;
}

.nav-links a{
  text-decoration:none;
  color:#333;
  font-weight:500;
}

.nav-links a.active{
  color:#1f7a3f;
}

.nav-btn{
  background:#1f7a3f;
  color:#fff !important;
  padding:10px 22px;
  border-radius:25px;
}

/* HAMBURGER */
.menu-toggle{
  display:none;
  flex-direction:column;
  gap:6px;
  cursor:pointer;
}

.menu-toggle span{
  width:26px;
  height:3px;
  background:#333;
}



.hero-section {
  height: 100vh;
  background: url('https://images.unsplash.com/photo-1581579186898-7e0f83a4032d') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

.hero-content {
  position: relative;
  color: #fff;
}

.page-header {
  height: 40vh;
  background: linear-gradient(135deg, #0d6efd, #198754);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.site-footer{
  background:#000000;
  color:#e8f5ec;
  padding:70px 20px 0;
}

.footer-container{
  max-width:1300px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:35px;
}

.footer-box h3{
  color:#6bd19c;
  margin-bottom:18px;
}

.footer-box p,
.footer-box li{
  font-size:.95rem;
  line-height:1.7;
}

.footer-box ul{
  list-style:none;
}

.footer-box ul li{
  margin-bottom:10px;
}

.footer-box ul li a{
  color:#e8f5ec;
  text-decoration:none;
}

.footer-box ul li a i{
  margin-right:6px;
  font-size:.75rem;
}

.footer-box a{
  color:#e8f5ec;
  text-decoration:none;
}

.footer-social{
  display:flex;
  gap:15px;
  margin-top:20px;
}

.footer-social a{
  width:38px;
  height:38px;
  border-radius:50%;
  background:#1f7a3f;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:1.1rem;
}

/* BOTTOM */
.footer-bottom{
  margin-top:50px;
  padding:18px;
  text-align:center;
  background:transparent;
  font-size:.9rem;
}

/* MOBILE */
@media(max-width:768px){
  .footer-container{
    gap:25px;
  }
}

