h3.section-title {
    text-transform: none;
    font-size: 40px;
    text-align: start;
    line-height: 130%;
    letter-spacing: 0.5px;
}

.timeline-wrapper {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    position: relative;
}

.timeline-step {
    max-width: 450px;
}

.step-line {
    height: 5vh;
    width: 2px;
    background-color: var(--primary-color);
    z-index: 1;
}

.step-title {
    font-size: 38px;
    color: var(--primary-color);
    font-weight: bold;
}

.timeline-title {
    font-size: 44px;
    color: var(--primary-color);
    font-weight: bold;
}

.timeline-wrapper .bg-left {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: -10;
}

.timeline-wrapper .bg-right {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: -10;
}