    .hiw-section {
      padding: 60px 20px 70px;
      max-width: 860px;
      margin: 0 auto;
    }

.hiw-heading {
    text-align: center;  
    letter-spacing: -0.2px;
    font-size: 34px;
    color: #003F62;
    font-weight: 400;
    margin-bottom: 30px;
    font-family: 'Work Sans', sans-serif !important;
  line-height: 42px;
}

    /* outer row — steps + arrows side by side */
    .hiw-row {
      display: flex;
      align-items: flex-start;
      justify-content: center;
    }

    /* each step: icon on top, label below */
    .hiw-step {
      flex: 1;
      max-width: 170px;
      text-align: center;
    }

    .hiw-icon-wrap {
      margin: 0 auto 18px;
      display: flex;
      justify-content: center;
    }

    .hiw-icon-wrap img {
      width: 80px;
      height: 80px;
      object-fit: contain;
      display: block;
    }

    /* arrow sits between steps, self-aligned to the icon midpoint */
    .hiw-arrow {
      flex-shrink: 0;
      align-self: flex-start;
      margin-top: 29px; /* (80px icon / 2) - (22px svg / 2) */
      padding: 0 4px;
    }

    .hiw-arrow svg {
      display: block;
      width: 54px;
      height: 22px;
      overflow: visible;
    }

  .hiw-step-title {
    font-size: 16px; 
    line-height: 1.3;
    font-size: 19px;
    color: #003F62;
    font-weight: 500;
    margin-bottom: 8px;
    font-family: 'Work Sans', sans-serif !important;
    margin: 0;
    padding: 0;
}

    .hiw-step-desc {
      font-size: 13.5px;
      color: #444;
      line-height: 1.55;
    }

    /* mobile: stack each step+label pair vertically */
    @media (max-width: 600px) {
      .hiw-row {
        flex-direction: column;
        align-items: center;
        gap: 0;
      }
      .hiw-step {
        max-width: 300px;
        width: 100%;
        padding: 16px 0;
      }
      .hiw-arrow {
        align-self: center;
        margin-top: 0;
        padding: 8px 0;
        transform: rotate(90deg);
      }
      .hiw-heading { 
    font-size: 30px; 
    line-height: 40px;
}
    }
