.how-it-works-2 {
    background: #F15A3A;
    color: #ffffff;
    padding: 96px var(--container-padding);
  }
  
  .how-it-works-2__inner {
    max-width: var(--container-max);
    margin: 0 auto;
  }
  
  .how-it-works-2__content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
  
  .how-it-works-2__left {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }
  
  .how-it-works-2__kicker {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.9);
  }
  
  .how-it-works-2__title {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin: 0;
    color: #ffffff;
  }
  
  .how-it-works-2__buttons {
    display: flex;
    flex-direction: row;
    gap: 16px;
  }
  
  .how-it-works-2__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    border: 2px solid transparent;
    width: fit-content;
  }
  
  .how-it-works-2__button--primary {
    background: #ffffff;
    color: #F15A3A;
  }
  
  .how-it-works-2__button--secondary {
    background: transparent;
    color: #ffffff;
    gap: 8px;
  }
  
  .how-it-works-2__right {
    width: 100%;
  }
  
  .how-it-works-2__items {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    position: relative;
  }
  
  .how-it-works-2__item::after {
    content: '';
    position: absolute;
    left: 20px;
    top: 50px;
    width: 1px;
    height: 80px;
    background: rgba(255, 255, 255, 0.3);
    z-index: 0;
  }
  
  .how-it-works-2__item:last-child::after {
    display: none;
  }
  
  .how-it-works-2__item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    position: relative;
    z-index: 1;
  }
  
  .how-it-works-2__icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
  }
    
  .how-it-works-2__icon svg {
    width: 32px;
    height: 32px;
    color: #000000;
  }
  
  .how-it-works-2__content {
    flex: 1;
  }
  
  .how-it-works-2__item-title {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: clamp(1.3rem, 2.5vw, 1.5rem);
    margin: 0 0 12px;
    color: #ffffff;
  }
  
  .how-it-works-2__description {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    margin: #FFFFFF;
  }