/* about.html — page-specific styles.
   Distinct treatment: green accent bar on the hero, and the "Our approach"
   stage list rendered as a connected vertical timeline. */

.page-hero{ border-left: 6px solid var(--green); }
.page-hero .container{ padding-left: 22px; }

.stage-list{ position: relative; }
.stage-list::before{
  content: '';
  position: absolute;
  left: 44px; top: 6px; bottom: 6px;
  width: 2px;
  background: var(--line);
}
.stage-list .stage-num{
  position: relative;
  z-index: 1;
  background: var(--light);
  padding-right: 6px;
}
