.steps-container{
    margin-top: 96px;
    margin-bottom: 68px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    gap:72px;
}
.steps-info{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap:45px;
    text-align: center;
}

.steps-info h3{
    font-weight: 600;
    font-size: 56px;
    line-height: 64px;
}
.steps-info p{
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    color: var(--color-secondary);
     max-width: 546px;
}

.steps-list {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  position: relative;
}

.step {
  flex: 1;
  position: relative;
}

.step::before {
  content: '';
  position: absolute;
  top:  105px;
  left: 50%;
  width: 110%;
  height: 2px;
  background: var(--color-primary);
  z-index: 1;
}

.step:last-child::before {
  display: none;
}

.step-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  position: relative;
  z-index: 2;
}

.step-number {
  font-size: 40px;
  line-height: 40px;
  font-weight: 500;
  color: var(--color-dark);
}

.step-dot {
  position: relative ;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--color-primary);
}

.step-dot-center{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--color-light);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    z-index: 2;
}
.step-dot::before{
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 16px;
    width: 16px;
    background-color: var(--color-primary);
    border-radius: 50%;
    z-index: 4;
}

.step-content {
  margin-top: 48px;
  text-align: center;
}

.step-content h5 {
  font-size: 24px;
  line-height: 32px;
  font-weight: 600;
  margin-bottom: 12px;
}

.step-content p {
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  color: var(--color-secondary);
}

@media (max-width: 1440px) {
   
}
@media (max-width: 1280px) {
  .steps-container{
    gap: 56px;
  }

  .step::before{
    top: 82px;
  }
  .step-head{
    gap: 24px;
  }
  .steps-info{
    gap: 48px;
  }
  .step-number{
    font-size: 28px;
  }
  .steps-info h3{
    font-size: 32px;
    line-height: 48px;
  }
  .steps-info p{
    font-size: 16px;
    line-height: 24px;
  }
  .step-content{
    margin-top: 24px;
  }
  .step-content h5{
    font-size: 20px;
    line-height: 26px;
  }
  .step-content p{
    font-size: 14px;
    line-height: 20px;
  }
}


@media (max-width: 768px) {
   .steps-container{
    margin-top: 60px;
    margin-bottom: 64px;
    gap: 24px;
   }

  .steps-info{
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap:24px;
    text-align: center;
  }

  .steps-info h3{
      font-weight: 600;
      font-size:18px;
      line-height: 32px;
    }

    .steps-info p{
        font-weight: 500;
        font-size: 14px;
        line-height: 20px;
        color: var(--color-secondary);
        max-width: 100%;
       
    }

  .steps-list {
    flex-direction: column;
    gap: 32px;
    margin-left: 36px;
  }

  .step {
    display: flex;
    gap: 16px;
  }

  .step::before {
    top: 36px;
    left: 17px;
    width: 2px;
    height: calc(100% + 16px);
  }

  .step:last-child::before {
    display: none;
  }

  .step-head {
    align-items: center;
  }

  .step-number {
    position: absolute;
    top: 0;
    left:-36px;
    font-size: 16px;
    color: var(--color-secondary);
  }

  .step-content {
    margin-top: 0;
    text-align: left;
  }
  .step-content h5 {
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 16px;
    margin-top: 6px;
  }

.step-content p {
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;

  color: var(--color-secondary);
}
}
