.module-path {
    display: flex;
    justify-content: space-between;
    margin: 30px 0;
    position: relative;
    padding: 0 10px;
}

.module-path::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, var(--third), var(--secondary), var(--secondary-dark), var(--third-dark));
    z-index: 1;
}

.module-step {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 22%;
}

.module-step-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--card-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    border: 3px solid var(--third);
    font-weight: bold;
    color: var(--primary-dark);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.module-step:nth-child(2) .module-step-circle {
    border-color: var(--secondary);
}

.module-step:nth-child(3) .module-step-circle {
    border-color: var(--secondary-dark);
}

.module-step:nth-child(4) .module-step-circle {
    border-color: var(--third-dark);
}

.module-step-title {
    font-weight: 600;
    font-size: 0.95em;
    color: var(--primary-dark);
}