body {
    font-family: 'Inter', sans-serif;
    background-color: #fff;
}

.steps-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    max-width: 1280px;
    margin: 64px auto;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 33.33%;
}

.step-inline {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
    justify-content: center;
    height: 38px;
}

.divider {
    flex: 1;
    height: 1px;
    background-color: #E5E7EB;
}

.divider.transparent {
    opacity: 0;
}

/* Step icon base */
.step-icon {
    width: 38px;
    height: 38px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

/* Default / upcoming */
.step-icon.default {
    background-color: #ffffff;
    border: 1px solid #979797;
    color: #656565;
}

/* Current step */
.step-icon.active {
    background-color: rgba(29, 51, 91, 0.2);
    border: 1px solid #01294A;
    color: #01294A;
}

/* Completed step */
.step-icon.completed {
    background-color: #01294A;
    border: 1px solid #01294A;
    color: #ffffff;
}

.step-title {
    margin-top: 8px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    color: #979797;
}

.step-title.active-text {
    color: #01294A;
}

.step-title.completed-text {
    color: #01294A;
}

@media (max-width: 768px) {
    .steps-container {
        align-items: center;
        gap: 16px;
    }

    .step {
        width: 100%;
    }

    .step-inline {
        gap: 12px;
    }

    .step-title {
        font-size: 14px;
    }

    .divider {
        display: none;
    }
}

/* Compact phones (e.g., 360-420px) */
@media (max-width: 420px) {
    .steps-container {
        margin: 40px auto 24px;
        padding: 0 12px;
        gap: 12px;
    }

    .step-inline {
        gap: 10px;
        height: 34px;
    }

    .step-icon {
        width: 34px;
        height: 34px;
        font-size: 13px;
    }

    .step-title {
        font-size: 13px;
    }
}