@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700;800&display=swap');

.why-chi-header {
  padding: 100px 8%;
  background: #ffffff;
  font-family: 'Poppins', sans-serif;
}

.why-chi-header .container {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 60px;
}

/* LEFT SIDE */
.section-pill {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: #5a7d5a;
  background: #f1f6f1;
  padding: 5px 12px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 18px;
  text-transform: uppercase;
}
.section-pill .dot { 
  width: 5px; 
  height: 5px; 
  background: #5a7d5a; 
  border-radius: 50%; 
  display: inline-block; 
}

.why-left h2 {
  font-size: 46px;
  font-weight: 800;
  line-height: 1.2;
  color: #2d3748; /* dark charcoal */
  margin: 0;
}
.why-left h2.green-text { 
  color: #3a9e3a; /* CHI green */
}

/* RIGHT SIDE */
.why-right p {
  font-size: 15px;
  line-height: 1.7;
  color: #9ca3af; /* soft grey */
  font-style: italic;
  text-align: right;
  max-width: 320px;
  margin-bottom: 8px; /* to align with baseline of h2 */
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .why-chi-header .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
  }
  .why-right p {
    text-align: left;
    max-width: 100%;
  }
  .why-left h2 { font-size: 36px; }
  .why-chi-header { padding: 60px 6%; }
}


@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

.why-features {
  padding: 20px 8% 100px 8%; /* less top padding to connect to header */
  background: #ffffff;
  font-family: 'Poppins', sans-serif;
}

.why-features .container {
  max-width: 1300px;
  margin: 0 auto;
}

/* 3 COLUMN GRID */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 40px;
}