.hp-945a958f-wrapper {
    position: relative;
    padding: 40px 0;
    width: 100%;
}
.hp-945a958f-line-track {
    position: absolute;
    top: 55px; /* Center of the number circle (40px padding + 15px radius) */
    left: 0;
    right: 0;
    height: 4px;
    background-color: #e5e7eb;
    z-index: 1;
}
.hp-945a958f-progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background-color: #EDA340;
    transition: width 1.5s ease-in-out;
}
.hp-945a958f-steps-container {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    gap: 20px;
}
.hp-945a958f-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.hp-945a958f-number {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #fff;
    border: 2px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #4f5b66;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 3;
}
.hp-945a958f-card {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    width: 100%;
    position: relative;
    z-index: 2;
}
.hp-945a958f-title {
    margin: 0 0 10px 0;
    font-size: 1.1em;
}
.hp-945a958f-desc {
    margin: 0;
    font-size: 0.9em;
    color: #666;
}

@media (max-width: 767px) {
    .hp-945a958f-wrapper {
        padding: 20px 0;
    }
    .hp-945a958f-steps-container {
        flex-direction: column;
        gap: 30px;
    }
    .hp-945a958f-line-track {
        top: 20px;
        bottom: 20px;
        left: 15px; /* Center of the number circle (30px/2) */
        width: 4px;
        height: auto;
        right: auto;
    }
    .hp-945a958f-progress-fill {
        width: 100%;
        height: 0%;
        transition: height 1.5s ease-in-out;
    }
    .hp-945a958f-step {
        flex-direction: row;
        align-items: stretch;
        text-align: left;
        position: relative;
    }
    .hp-945a958f-number {
        margin-bottom: 0;
        margin-right: 20px;
        flex-shrink: 0;
        z-index: 3;
    }
    .hp-945a958f-card {
        margin-top: 0;
    }
}
