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

/* ===== HEADER & NAVBAR ===== */
.header{
  background:#fff;
  border-bottom:4px solid #1f8a1b;
  padding:10px 20px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
  position:relative;
  z-index:10;
}
.header .left{display:flex;align-items:center;gap:14px}
.header img.logo{height:64px}
.header .title-block{
  display:flex;
  flex-direction:column;
}
.header .title-block div:first-child{
  font-size:14px;font-weight:700;color:#1c1c1c;
}
.header .title-block div:last-child{
  font-size:12px;color:#4b6b4b;
}

/* Navigation */
nav.mainmenu{
  display:flex;
  gap:16px;
}
nav.mainmenu a{
  text-decoration:none;
  color:#124b10;
  font-weight:600;
  padding:6px 10px;
  border-radius:6px;
}
nav.mainmenu a:hover{background:#e6f3e6}

/* Hamburger for mobile */
.menu-toggle{
  display:none;
  flex-direction:column;
  justify-content:center;
  width:32px;
  height:32px;
  cursor:pointer;
}
.menu-toggle span{
  height:3px;
  background:#124b10;
  margin:4px 0;
  border-radius:2px;
}
@media(max-width:720px){
  nav.mainmenu{
    display:none;
    flex-direction:column;
    width:100%;
    background:#fff;
    position:absolute;
    top:100%;
    left:0;
    border-top:1px solid #ddd;
  }
  nav.mainmenu.active{display:flex;}
  .menu-toggle{display:flex;}
  .header img.logo{height:54px;}
}

/* ===== HERO IMAGE ===== */
.hero-image{
  width:100%;
  height:50vh;

  position:relative;
}
.hero-image::after{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0);
}
.hero-text{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  text-align:center;
  color:#fff;
  z-index:2;
}
.hero-text h1{font-size:2em;margin:0;color: #fff;}
.hero-text h2{font-size:1.1em;font-weight:500;margin-top:8px;color: #fff;}

/* ===== CONTENT SECTIONS ===== */
.container{max-width:1000px;margin:28px auto;padding:0 16px}
.about{display:flex;flex-wrap:wrap;gap:20px;margin-top:20px;align-items:center}
.about .img{flex:1 1 320px}
.about .img img{width:100%;height:auto;border-radius:6px;box-shadow:0 6px 18px rgba(0,0,0,0.08)}
.about .text{flex:1 1 360px}
.card-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:14px;margin-top:20px}
.card{background:#fff;padding:14px;border-radius:8px;box-shadow:0 6px 18px rgba(0,0,0,0.05)}
.footer{margin-top:28px;padding:18px 0;color:#666;font-size:14px;text-align:center}
@media (max-width:720px){.about{flex-direction:column}}

h1{margin:0;font-size:28px;color:#124b10}
h2{margin-top:8px;color:#2f6b24;font-weight:600}

/* ===== PARTNERS GRID ===== */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}

@media (max-width: 720px) {
  .partners-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== PROGRAMS & SERVICES ===== */
.program-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin: 40px 0;
}

.program-section.reverse {
  flex-direction: row-reverse;
}

.program-image {
  flex: 1 1 45%;
}
.program-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
}

.program-text {
  flex: 1 1 50%;
}

.program-text h2 {
  color: #1f8a1b;
  margin-top: 0;
}

.program-text h3 {
  margin-top: 20px;
  color: #124b10;
}

@media (max-width: 768px) {
  .program-section {
    flex-direction: column;
  }
  .program-section.reverse {
    flex-direction: column;
  }
  .program-image,
  .program-text {
    flex: 1 1 100%;
  }
}

