.project-steps {
    display: flex;
    position: relative;
    flex-direction: column;
}

.project-step {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    position: relative;
}

.project-step::before {
    content: '';
    position: absolute;
    left: 28px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: #DDDDDD;
    z-index: 0;
}

.project-step:last-child::before {
    display: none;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: #F7F5F5;
    color: #E74315;
    border-radius: 8px;
    padding: 12px;
    font-family: Montserrat, sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    position: relative;
    z-index: 1;
}

.step-content {
    flex: 1;
}

.project-step:not(:last-child) .step-content {
    padding-bottom: 44px;
}

.step-title {
    font-family: Montserrat, sans-serif;
    font-weight: 700;
    font-size: 16px!important;
    line-height: 24px!important;
    text-transform: uppercase;
    color: #1D1D1B;
    margin: 0;
}

.step-description {
    font-family: Inter, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #555554;
    margin: 0;
}