:root{
  --green:#0b6b3a;
  --green-light:#e8f4ee;
  --green-dark:#07512a;
  --grey:#f6f6f6;
  --orange:#f57c00;
  --blue:#0288d1;
  --red:#d32f2f;
  --purple:#7b1fa2;
  --teal:#009688;
}

/* ===== SECTION COMMON ===== */
.section{
  padding:12px 0;
}

.section-grey{
  background:var(--grey);
}

.section-head{
  text-align:center;
  margin-bottom:5px;
}

.section-title{
  font-size:34px;
  color:var(--green);
  margin-bottom:6px;
  font-weight:700;
}

.section-desc{
  font-size:16px;
  color:#444;
  max-width:1000px;
  margin:auto;
  line-height:1.8;
}

/* ===== INFO STRIP ===== */
.info-strip{
  background:linear-gradient(90deg,var(--green),#118a4d);
  color:#fff;
  padding:12px 0;
}

.info-grid{
  display:flex;
  /* grid-template-columns:repeat(4,1fr); */
  gap:30px;
  text-align:center;
  justify-content: space-between;
}

.info-box h3{
  font-size:36px;
  font-weight:700;
  margin-bottom:6px;
}

.info-box p{
  font-size:14px;
  opacity:.95;
}

/* ===== SPLIT LAYOUT ===== */
.split{
  display:grid;
  grid-template-columns:1.3fr 1fr;
  gap:50px;
  align-items:flex-start;
}

/* ===== PRODUCT CARDS ===== */
.content-block{
  display:flex;
  flex-direction:column;
  gap:25px;
}

.product-card{
  background:#fff;
  padding:22px 26px;
  border-left:5px solid var(--green);
  border-radius:8px;
  box-shadow:0 6px 18px rgba(0,0,0,0.08);
  transition:transform .3s ease, box-shadow .3s ease;
}

.product-card:hover{
  transform:translateY(-6px);
  box-shadow:0 14px 30px rgba(0,0,0,0.15);
}

.product-card h3{
  font-size:20px;
  color:var(--green);
  font-weight:600;
  display:flex;
  align-items:center;
  gap:10px;
}

.product-card ul{
  margin-top:12px;
  padding-left:0;
  list-style:none;
}

.product-card li{
  margin-bottom:10px;
  line-height:1.6;
  display:flex;
  align-items:flex-start;
  font-size:15px;
}

.product-card li::before{
  content:"✔";
  color:var(--green);
  margin-right:8px;
  font-weight:bold;
}

/* ===== HIGHLIGHT PANEL ===== */
.highlight-panel{
  background:var(--green-light);
  padding:30px;
  border-left:6px solid var(--green);
  border-radius:6px;
  font-size:15px;
  line-height:1.7;
}

.highlight-panel h3{
  color:var(--green);
  margin-bottom:10px;
  font-size:20px;
}

.highlight-panel ul{
  list-style:none;
  padding-left:0;
}

.highlight-panel li{
  margin-bottom:8px;
  font-size:15px;
}

.highlight-note{
  margin-top:15px;
  font-weight:600;
  color:var(--green-dark);
}

/* ===== OBJECTIVES ===== */
.objectives-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:30px;
  margin-top:30px;
}

.objective-item{
  background:#fff;
  padding:20px;
  border-left:5px solid var(--green);
  border-radius:6px;
  box-shadow:0 6px 20px rgba(0,0,0,.08);
  transition:transform .3s ease, box-shadow .3s ease;
}

.objective-item:hover{
  transform:translateY(-6px);
  box-shadow:0 14px 30px rgba(0,0,0,.15);
}

.objective-item h4{
  font-size:18px;
  font-weight:600;
  color:var(--green);
  display:flex;
  align-items:center;
  gap:8px;
}

.objective-item p{
  margin-top:6px;
  font-size:14px;
  line-height:1.6;
  color:#333;
}

/* ===== BUSINESS PROPOSALS ===== */
.business-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
  margin-top:30px;
}

.business-item{
  background:#fff;
  padding:62px 22px 22px;
  border-left:5px solid var(--green);
  border-radius:8px;
  box-shadow:0 6px 20px rgba(0,0,0,.08);
  position:relative;
  transition:transform .3s ease, box-shadow .3s ease;
}

.business-item:hover{
  transform:translateY(-8px);
  box-shadow:0 16px 34px rgba(0,0,0,.15);
}

.business-item h4{
  font-size:17px;
  color:var(--green);
  margin-bottom:6px;
  font-weight:600;
  display:flex;
  align-items:center;
  gap:8px;
}

.business-item p{
  font-size:14px;
  line-height:1.6;
}

/* ICON CIRCLES */
.business-item .icon{
  width:50px;
  height:50px;
  border-radius:50%;
  display:flex;
  justify-content:center;
  align-items:center;
  position:absolute;
  top:-25px;
  left:20px;
  color:#fff;
  font-size:22px;
}

.business-item:nth-child(1) .icon{background:var(--orange);}
.business-item:nth-child(2) .icon{background:var(--blue);}
.business-item:nth-child(3) .icon{background:var(--red);}
.business-item:nth-child(4) .icon{background:var(--green-dark);}
.business-item:nth-child(5) .icon{background:var(--purple);}
.business-item:nth-child(6) .icon{background:var(--teal);}

/* ===== RESPONSIVE ===== */
@media(max-width:1000px){
  .info-grid{grid-template-columns:repeat(2,1fr);}
  .split{grid-template-columns:1fr;}
  .objectives-grid{grid-template-columns:1fr;}
  .business-grid{grid-template-columns:1fr;}
}
