* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
  }
  
  body {
    color: #333;
    line-height: 1.6;
  }
  
  .container {
    max-width: 1100px;
    margin: auto;
    padding: 1.5rem;
  }
  
  .navbar {
    background: #2e7d32;
    color: white;
  }
  
  .navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .navbar a {
    color: white;
    margin-left: 1rem;
    text-decoration: none;
  }
  
  .logo {
    font-size: 1.4rem;
  }
  
  .hero {
    background: #e8f5e9;
    padding: 4rem 0;
    text-align: center;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .bg-light {
    background: #f7f7f7;
  }
  
  .grid-3, .grid-4 {
    display: grid;
    gap: 1.5rem;
  }
  
  .grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
  
  .grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
  
  .card {
    background: white;
    padding: 1.5rem;
    border-radius: 6px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  }
  
  .btn {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background: #2e7d32;
    color: white;
    border-radius: 4px;
    text-decoration: none;
  }
  
  .btn-outline {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background: #2e7d32;
    color: white;
    border-radius: 4px;
    text-decoration: none;
  }
  
  .form input, .form select, .form textarea {
    width: 100%;
    margin-bottom: 1rem;
    padding: 0.7rem;
  }
  
  .footer {
    background: #1b5e20;
    color: white;
    text-align: center;
    padding: 1rem;
  }

/* Navbar logo */
.nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo-wrap {
    display: flex;
    align-items: center;
    gap: 0.6rem;
  }
  
  .logo-img {
    height: 42px;
    width: auto;
  }
  
  .logo-text {
    font-size: 1.2rem;
    font-weight: 600;
  }
  
  /* Hero background */
  .hero-bg {
    position: relative;
    background-image: url("../images/hero.jpg");
    background-size: cover;
    background-position: center;
    color: white;
  }
  
  .hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
  }
  
  .hero-content {
    position: relative;
    z-index: 1;
    padding: 4rem 0;
  }
  
  .hero h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
  }
  
  .hero p {
    max-width: 700px;
    margin: 0 auto 1.5rem;
  }
  
  /* CTA section */
  .cta {
    background: #2e7d32;
    color: white;
    text-align: center;
  }
  
  .cta .btn {
    background: white;
    color: #2e7d32;
  }
  
  /* Footer */
.footer {
  background: #1b5e20;
  color: white;
  margin-top: 3rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.footer h4 {
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
}

.footer p {
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
}

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

.footer a:hover {
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
  font-size: 0.85rem;
}