.progress-line {
    position: relative;
    width: 65%;
    height: 4px;
    background: #aeeaf5; /* lighter blue line */
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 30px 0;
}

/* Step circle */
.progress-line .step {
    width: 10px;
    height: 10px;
    background: #9be3f3;
    border-radius: 50%;
    position: relative;
}

/* Highlight the current step */
.progress-line .step.active {
    background: #24b9d7; /* darker blue */
    width: 12px;
    height: 12px;
}
