.AboutContainer {   
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  width: 100% !important;
  margin-bottom: 12px;
}

.AboutHero{ text-align:center; margin-bottom:28px; }
.AboutHero h1{
  font-size: 28px;
  letter-spacing:.2px;
  margin:0 0 6px;
}
.AboutLead{ font-size:18px; color:#4b5563; }

.AboutGrid{ display:block; }
.AboutBlock{
  padding: 8px 0 22px;
  border-bottom: 1px solid #eef2f7; 
}
.AboutBlock:last-of-type{ border-bottom:none; }

.AboutBlock h2{
  font-size:20px;
  margin: 14px 0 10px;
  position:relative;
  color:#111827;
  font-weight:700;
}
.AboutBlock h2::after{
  content:"";
  display:block;
  width:44px; height:3px;
  background:#4cbd9a;
  border-radius:2px;
  margin-top:8px;
}

.AboutBlock p{ 
  line-height:1.7; 
  color:#374151; 
  margin: 8px 0 0;
}

.AboutList{ margin: 6px 0 0; padding:0; list-style:none; }
.AboutList li{
  display:flex; gap:10px;
  margin: 6px 0;
  color:#374151;
}
.AboutList li::before{
  content:"";
  flex:0 0 7px; height:7px;
  background:#4cbd9a; border-radius:50%;
  margin-top:9px;
}

.AboutTags{ display:flex; flex-wrap:wrap; gap:8px; padding:0; margin-top:8px; list-style:none; }
.AboutTags li{
  padding:6px 10px;
  border:1px solid #bfe7d7;
  background:#f4fbf8;
  color:#065f46;
  border-radius:999px;
  font-size:14px;
}

.AboutTimeline{ list-style:none; padding:0; margin-top:6px; }
.AboutTimeline li{ margin:8px 0; color:#374151; }
.AboutTimeline li span{ color:#059669; font-weight:700; margin-right:6px; }

.AboutCTA{ text-align:center; margin-top:8px; }
.BtnPrimary{
  display:inline-block;
  margin-top:10px;
  padding:10px 16px;
  background:#4cbd9a; color:#fff; border-radius:8px;
  text-decoration:none; font-weight:600;
  box-shadow: 0 6px 16px rgba(76,189,154,.22);
  transition: transform .12s ease, box-shadow .12s ease, background .12s;
}
.BtnPrimary:hover{
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(76,189,154,.28);
  background:#46b292;
}

@media (max-width: 480px){
  .AboutContainer{ padding:22px 16px; margin-bottom: 0; }
  .AboutHero h1{ font-size:24px; }
  .AboutLead{ font-size:16px; }
  .AboutBlock h2{ font-size:18px; }
}