/* ===== About Page ===== */

.pageHero{
  background: radial-gradient(1200px 700px at 50% 10%, rgba(255,255,255,.10), transparent 55%),
    linear-gradient(180deg, #0b2a45 0%, #08223a 100%);
  color: #fff;
  position: relative;
  padding: 84px 0 82px;
  overflow: hidden;
}

.pageHero__inner{ text-align: center; }

.pageHero__title{
  margin: 0;
  font-weight: 800;
  letter-spacing: .2px;
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  line-height: 1.05;
}

.pageHero__subtitle{
  margin: 14px auto 0;
  max-width: 900px;
  font-size: 1rem;
  opacity: .95;
}

.pageHero__wave{
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  width: 100%;
  height: 80px;
}

/* body */
.aboutBody{
  background: #fff;
  padding: 56px 0 84px;
}

/* Intro should be a centered "pill card" like screenshot 2 */
.aboutBody__intro{
  max-width: 860px;
  margin: 0 auto 28px;
  padding: 16px 18px;
  border-radius: 10px;
  background: #d8f4f3;              /* light aqua */
  color: #1c3e66;
  text-align: left;                  /* screenshot 2 looks left-aligned */
  line-height: 1.7;
  box-shadow: 0 10px 24px rgba(15, 35, 60, .08);
}

/* REMOVE the two-column spacer layout; center everything */
.aboutBody__grid{
  display: block;                    /* stop using two columns */
}

/* Hide spacer (keep it in Razor if you want) */
.aboutBody__spacer{ display:none; }

/* Center the cards block and constrain width */
.aboutBody__features{
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 18px;
}

/* Turn each item into a real card */
.featureRow{
  background: #fff;
  border-radius: 12px;
  padding: 18px 18px;
  box-shadow: 0 12px 26px rgba(16, 38, 66, .10);
  border: 1px solid rgba(20, 40, 80, .06);

  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;
}

/* Icon inside a light circle */
.featureRow__icon{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: #e9f8f7;
  display: grid;
  place-items: center;
}

.featureRow__icon img{
  width: 30px;
  height: 30px;
  object-fit: contain;
  opacity: .95;
  filter: saturate(1.2);
}

.featureRow__title{
  margin: 0;
  color: #0f3b77;
  font-weight: 800;
  font-size: 1.05rem;
}

.featureRow__text{
  margin: 6px 0 0;
  color: #6f86a7;
  line-height: 1.65;
  font-size: .92rem;
}

/* mission card: centered + shadow like screenshot 2 */
.missionCard{
  margin: 54px auto 0;
  padding: 48px 28px;
  border-radius: 16px;
  text-align: center;
  color: #fff;
  background: linear-gradient(90deg, #1f4fae 0%, #39d9e0 100%);
  max-width: 860px;
  box-shadow: 0 18px 34px rgba(10, 20, 40, .18);
}

.missionCard__title{
  margin: 0 0 14px;
  font-weight: 900;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
}

.missionCard__text{
  margin: 0 auto;
  max-width: 760px;
  line-height: 1.85;
  font-weight: 600;
  opacity: .98;
}

/* responsive */
@media (max-width: 992px){
  .aboutBody__features{ grid-template-columns: 1fr; }
  .aboutBody__intro{ text-align: center; }
}
