.input-group{
	margin-bottom:24px;
}

.result-grid{
	display:grid;
	grid-template-columns:repeat(2,1fr);
	gap:18px;
}

.mini-card{
      background:#F2F7F6;
      border-radius:18px;
      padding:22px;
      transition:0.3s;
    }

.mini-card:hover{
      transform:translateY(-4px);
    }

.headi{
  color:#365951;
  font-size:15px;
  margin-bottom:10px;
	font-weight:500;
    }

.mini-card p{
      color:#007f5f;
      font-size:23px;
      font-weight:600;
    }

.section{
      margin-top:25px;
      background:#F2F7F6;
      border-radius:20px;
      padding:24px;
    }

.progress-bar{
      width:100%;
      height:18px;
      background:#d6e4df;
      border-radius:30px;
      overflow:hidden;
      margin-top:15px;
    }

    .progress{
      height:100%;
      width:0%;
      background:linear-gradient(90deg,#007f5f,#55a630);
      border-radius:30px;
      transition:1s ease;
    }

.fun-facts{
      display:grid;
      gap:14px;
      margin-top:15px;
    }

    .fact{
      background:#ffffff;
      border-radius:14px;
      padding:16px;
      font-size:15px;
      color:#365951;
    }

.highlight{
      color:#007f5f;
      font-weight:700;
    }