.vst-wrapper {
    background-color: #FFFFFF;
    padding: 80px 24px;
    max-width: 800px;
    margin: 0 auto;
    font-family: sans-serif;
}

.vst-header {
    text-align: center;
    margin-bottom: 64px;
}

.vst-header h2 {
    color: #1E3A5F;
    font-size: 36px;
    font-weight: 700;
    margin: 0 0 16px 0;
}

.vst-header p {
    color: #5a5a5a;
    font-size: 18px;
    margin: 0;
    line-height: 1.5;
}

.vst-timeline {
    display: flex;
    flex-direction: column;
}

.vst-step {
    display: flex;
    position: relative;
    min-height: 120px; /* Ensures enough space for the line */
}

.vst-step:last-child {
    min-height: auto;
}

.vst-indicator {
    width: 60px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 32px;
}

.vst-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #EC6F1F;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    z-index: 2;
}

.vst-line {
    flex-grow: 1;
    width: 2px;
    background-color: #E5E5E5;
    margin-top: 8px;
    margin-bottom: 8px;
}

.vst-content {
    flex-grow: 1;
    padding-top: 12px; /* Aligns visually with the center of the number circle */
    padding-bottom: 48px;
}

.vst-step:last-child .vst-content {
    padding-bottom: 0;
}

.vst-step-title {
    color: #1E3A5F;
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 12px 0;
}

.vst-step-desc {
    color: #5a5a5a;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .vst-wrapper {
        padding: 60px 16px;
    }

    .vst-header h2 {
        font-size: 28px;
    }
    
    .vst-indicator {
        margin-right: 24px;
    }
    
    .vst-number {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .vst-content {
        padding-top: 8px;
    }
    
    .vst-step-title {
        font-size: 20px;
    }
}