.vt-container-132ec66c {
    position: relative;
    padding-left: 20px;
    margin-left: 20px;
}
.vt-container-132ec66c .vt-line,
.vt-container-132ec66c .vt-line-progress {
    position: absolute;
    left: 0;
    top: 0;
    width: 1px; /* Minimal base line */
    transform: translateX(-50%);
}
.vt-container-132ec66c .vt-line {
    bottom: 0;
    background-color: #eee;
    z-index: 0;
}
.vt-container-132ec66c .vt-line-progress {
    height: 0;
    background-color: #333; /* Softer black */
    width: 2px; /* Thinner progress line */
    z-index: 1;
}
.vt-container-132ec66c .vt-step {
    position: relative;
    padding-left: 40px; /* Space out content slightly more */
    margin-bottom: 50px;
    display: flex;
    align-items: flex-start;
}
.vt-container-132ec66c .vt-step:last-child {
    margin-bottom: 0;
}
.vt-container-132ec66c .vt-number {
    position: absolute;
    left: -40px;
    top: 0;
    width: 40px;
    height: 40px;
    background-color: #fff;
    border: none; /* No border as requested */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400; /* Much less bold */
    color: #999; /* Lighter default color */
    z-index: 2;
    transition: color 0.4s ease; /* Smooth fade */
    font-size: 16px;
}
.vt-container-132ec66c .vt-step.active .vt-number {
    color: #111; /* Darker when active */
    font-weight: 500;
}
.vt-container-132ec66c .vt-content {
    width: 100%;
    padding: 0;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    padding-top: 8px; /* Align text better with the number center */
}
.vt-container-132ec66c .vt-title {
    margin: 0 0 12px 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: #222;
}
.vt-container-132ec66c .vt-desc {
    margin: 0;
    color: #666;
    line-height: 1.7;
    font-size: 0.95rem;
}

@media (max-width: 767px) {
    .vt-container-132ec66c {
        padding-left: 10px;
        margin-left: 10px;
    }
    .vt-container-132ec66c .vt-step {
        padding-left: 35px;
    }
    .vt-container-132ec66c .vt-number {
        left: -35px;
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
}