@layer overrides {
  .about-page {
    padding-top: 1px;
  }

  .about-page strong {
    color: var(--rp-navy);
  }

  .about-intro {
    min-height: 1050px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-block: 70px 85px;
    text-align: center;
  }

  .about-intro > img {
    width: 430px;
    height: 430px;
    object-fit: contain;
    margin-bottom: 30px;
  }

  .about-intro h1 {
    margin-bottom: 38px;
    font-size: 66px;
  }

  .about-intro p {
    max-width: 1450px;
    font-size: 19px;
    line-height: 1.28;
  }

  .about-stats {
    min-height: 205px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    gap: 20px;
    margin-bottom: 195px;
    padding: 30px 35px;
    background: var(--rp-orange);
    border: 1.5px solid var(--rp-navy);
    border-radius: 15px;
    box-shadow: 5px 6px 0 var(--rp-navy);
  }

  .about-stats div {
    display: grid;
    gap: 14px;
  }

  .about-stats span {
    font-size: 17px;
    text-transform: uppercase;
  }

  .about-stats strong {
    font-size: 64px;
    line-height: 1;
    letter-spacing: -0.05em;
    text-shadow: 3px 3px 0 #fff, 5px 5px 0 var(--rp-navy);
    -webkit-text-stroke: 1px #fff;
  }

  .about-clients {
    padding-bottom: 220px;
    text-align: center;
  }

  .about-clients h2 {
    margin-bottom: 55px;
    font-size: 64px;
  }

  .about-client-card {
    padding: 28px 34px;
    background: #fff;
    border: 1.5px solid var(--rp-navy);
    border-radius: 16px;
    box-shadow: 5px 6px 0 var(--rp-navy);
  }

  .about-client-card img {
    display: block;
    width: 100%;
    height: auto;
  }

  .about-purpose {
    margin-bottom: 220px;
    padding: 58px 70px;
    text-align: center;
    background: var(--rp-orange);
    border: 1.5px solid var(--rp-navy);
    border-radius: 16px;
    box-shadow: 5px 6px 8px rgb(24 56 95 / 28%);
  }

  .about-purpose article + article {
    margin-top: 56px;
  }

  .about-purpose h2 {
    margin-bottom: 20px;
    font-size: 62px;
  }

  .about-purpose h3 {
    margin-bottom: 12px;
    font-size: 21px;
  }

  .about-purpose p {
    font-size: 18px;
    line-height: 1.25;
  }

  .about-team {
    padding-bottom: 220px;
  }

  .about-section-head {
    max-width: 1400px;
    margin: 0 auto 60px;
    text-align: center;
  }

  .about-section-head h2 {
    margin-bottom: 30px;
    font-size: 64px;
  }

  .about-section-head p {
    font-size: 20px;
  }

  .about-team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
  }

  .about-team-grid article {
    padding: 20px 20px 28px;
    background: #fff;
    border: 1.5px solid var(--rp-navy);
    border-radius: 15px;
    box-shadow: 5px 6px 0 var(--rp-navy);
  }

  .about-team-grid img {
    width: 100%;
    aspect-ratio: 327 / 431;
    object-fit: cover;
    border-radius: 8px;
  }

  .about-team-grid h3 {
    margin: 24px 0 10px;
    font-size: 31px;
  }

  .about-team-grid strong {
    display: block;
    margin-bottom: 13px;
    font-size: 18px;
  }

  .about-team-grid p {
    font-size: 17px;
    line-height: 1.27;
  }

  .about-meet {
    margin-bottom: 210px;
    padding: 55px 65px;
    text-align: center;
    background: var(--rp-orange);
    border: 1.5px solid var(--rp-navy);
    border-radius: 16px;
    box-shadow: 5px 6px 8px rgb(24 56 95 / 28%);
  }

  .about-meet h2 {
    margin-bottom: 28px;
    font-size: 62px;
  }

  .about-meet p {
    font-size: 18px;
    line-height: 1.28;
  }

  .about-contact {
    padding-bottom: 230px;
  }

  .about-subscribe {
    padding-bottom: 170px;
  }

  @media (max-width: 1400px) {
    .about-intro {
      min-height: 920px;
    }

    .about-intro > img {
      width: 340px;
      height: 340px;
    }

    .about-team-grid h3 {
      font-size: 27px;
    }
  }

  @media (max-width: 900px) {
    .about-intro h1,
    .about-clients h2,
    .about-purpose h2,
    .about-section-head h2,
    .about-meet h2 {
      font-size: clamp(40px, 9vw, 60px);
    }

    .about-stats {
      grid-template-columns: 1fr 1fr;
      margin-bottom: 130px;
    }

    .about-clients,
    .about-team,
    .about-contact {
      padding-bottom: 140px;
    }

    .about-purpose,
    .about-meet {
      margin-bottom: 140px;
      padding: 42px 24px;
    }

    .about-team-grid {
      grid-template-columns: 1fr 1fr;
    }
  }

  @media (max-width: 560px) {
    .about-intro {
      min-height: 0;
      padding-block: 50px 90px;
    }

    .about-intro > img {
      width: 250px;
      height: 250px;
    }

    .about-intro p,
    .about-purpose p,
    .about-section-head p,
    .about-meet p {
      font-size: 15px;
    }

    .about-stats {
      padding: 22px 16px;
    }

    .about-stats strong {
      font-size: 39px;
    }

    .about-stats span {
      font-size: 13px;
    }

    .about-client-card {
      padding: 8px;
    }

    .about-team-grid {
      grid-template-columns: 1fr;
    }
  }
}
