.hero-section {
  background: url("/static/images/about/about.38c1fe7b52fd.webp") no-repeat top center;
  background-size: cover;
  height: 100vh;
  margin-top: 0;
  padding-top: 0;
  position: relative;
  z-index: 0;
}

.hero-section h1 {
  color: #fff;
  font-family: "Kufam", sans-serif;
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 32px;
  font-weight: 400;
  line-height: 79px;
  max-width: 1300px;
  width: 100%;
}





.path-section {
  background-color: #1D1F22;
  padding: 20px;
}

.path-section div {
  max-width: 65%;
  padding: 10px var(--gap);
  margin: auto;
}

.path-section p {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 13px;
  font-weight: 400;
  color: #7E8989;
}

.path-section p span {
  color: #0069B4;
}


* {
  box-sizing: border-box
}

body {
  margin: 0;
  background: #031227;
  color: #fff;
}

.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 20px 72px;
  background: #031227;
}

.section h2 {
  margin: 0 0 8px;
  font-size: 44px;
  font-weight: 800;
  text-align: center;
  letter-spacing: .2px;
  font-family: "Kufam", sans-serif;
}

.section p.lead {
  margin: 0 auto 36px;
  max-width: 860px;
  font-size: 21px;
  color: var(--muted);
  text-align: center;
  font-family: "Kufam", sans-serif;
}

/* --- layout --- */
.vm-wrap {
  max-width: 820px;
  /* keeps them centered/narrow like the design */
  margin: 0 auto;
  padding: 30px 16px;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* --- card --- */
.vm-card {
  background: radial-gradient(120% 120% at 50% 0%, #1D1F2266 0%, #1D1F2266 60%, #1D1F2266 100%);
  border: 1px solid rgba(255, 255, 255, .08);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .35);
  border-radius: 4px;
  padding: 28px 40px 32px;
  color: #eaf2fb;
  min-height: 400px;
  /* equal-ish height feel */
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* icon + title */
.vm-icon {
  font-size: clamp(28px, 4.5vw, 48px);
  margin-bottom: 10px;
}

.vm-title {
  font-size: clamp(16px, 2.1vw, 20px);
  font-weight: 700;
  margin: 0 0 12px;
}

/* paragraph */
.vm-text {
  margin: 0;
  color: #c8d6e6;
  line-height: 1.9;
  font-size: clamp(13px, 1.8vw, 16px);
}

/* 3 items on the right, 2 on the left (RTL) */
.vm-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 36px;
  list-style: none;
  /* <-- remove default bullets */
  margin: 0;
  padding: 0;
}

.vm-list li:nth-child(1) {
  grid-column: 1;
  grid-row: 1;
}

.vm-list li:nth-child(2) {
  grid-column: 1;
  grid-row: 2;
}

.vm-list li:nth-child(3) {
  grid-column: 1;
  grid-row: 3;
}

.vm-list li:nth-child(4) {
  grid-column: 2;
  grid-row: 1;
}

.vm-list li:nth-child(5) {
  grid-column: 2;
  grid-row: 2;
}

.vm-list li {
  position: relative;
  /* for absolute bullets */
  display: flex;
  align-items: center;
  line-height: 1.9;
  font-size: 16px;
  color: #c8d6e6;
  padding: 0;
  /* we'll add inline padding per side */

}

/* markers on the INNER side of each column */
.vm-list li::before,
.vm-list li::before {
  content: none;
}

/* right column (items 1–3): square after text (inner = left in RTL) */
.vm-list li::before {
  content: "";
  width: 7px;
  height: 7px;
  background: #fff;
  border-radius: 2px;
  margin-inline-end: 10px;
}


/* mobile: single column, uniform marker after text */
@media (max-width:576px) {
  .hero-section {
    height: 100vh;
  }

  .hero-section h1 {
    text-align: center !important;
    transform: unset !important;
    width: 90% !important;
    margin: auto;
    left: 5% !important;
    top: 39%;
    font-size: 24px;
    line-height: 35px;
  }

  .section h2 {
    font-size: 20px;
  }

  .section p.lead {
    font-size: 18px
  }

  .vm-list {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .vm-list li {
    grid-column: auto;
    grid-row: auto;
  }
}

.spacer {
  border-top: #020b18 solid 15px;
  height: 35vh;
  background-color: #031227;
}