<style>
  .hoering-wrapper {
    font-family: 'Raleway', sans-serif;
    background-color: transparent;
    padding: 32px 24px;
    box-sizing: border-box;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
  }

  .hoering-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    align-items: stretch;
  }

  .hoering-step {
    position: relative;
    background-color: #006870;
    border-radius: 6px;
    padding: 24px 20px 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  /* Arrow — only shown on desktop (5 in a row) */
  .hoering-step:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
    border-left: 10px solid #07bcd1;
    z-index: 2;
  }

  .hoering-step .step-number {
    width: 44px;
    height: 44px;
    background-color: #07bcd1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    flex-shrink: 0;
  }

  .hoering-step .step-title {
    font-size: 17px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.25;
    margin: 0;
  }

  .hoering-step .step-desc {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.5;
    margin: 0;
  }

  /* Tablet: 2 columns, last box centered */
  @media (max-width: 860px) {
    .hoering-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }

    .hoering-step:not(:last-child)::after {
      display: none;
    }

    .hoering-step:last-child {
      grid-column: 1 / -1;
      max-width: calc(50% - 8px);
      margin: 0 auto;
      width: 100%;
    }
  }

  /* Mobile: single column */
  @media (max-width: 480px) {
    .hoering-grid {
      grid-template-columns: 1fr;
      gap: 12px;
    }

    .hoering-step {
      flex-direction: row;
      align-items: flex-start;
      gap: 16px;
    }

    .hoering-step:last-child {
      grid-column: auto;
      max-width: 100%;
      margin: 0;
    }
  }
</style>