

.stages-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 60px 20px;
}
.stages-section{
    position: relative;
}
.stages-section svg{
    position: absolute;
    fill: var(--lightHelper);
    right: 0;
    left: 0;
    height: 20px;
    width: 100%;
}
.stages-section-header {
    text-align: center;
    margin-bottom: 40px;
}

.stages-section-title {
    display: inline-block;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--helperColor);
    position: relative;
}

.stages-section-title::after {
    content: "";
    position: absolute;
    width: 90%;
    height: 5px;
    border-radius: 25px;
    bottom: -10%;
    right: 0;
    background-image: linear-gradient(90deg, var(--lightHelper) 0%, var(--lightHelper) 100%);

}

.stages-section-title::before {
    content: "";
    position: absolute;
    width: 60%;
    height: 5px;
    border-radius: 25px;
    bottom: -25%;
    right: 0;
    background-image: linear-gradient(90deg, var(--lightHelper) 0%, var(--lightHelper) 100%);

}

.stages-row {
    display: flex;
    align-items: center;
    gap: 24px;
}

.stages-col {
    width: 33.33%;
}

.stages-col img {
    width: 100%;
}

.stage-card {
    border-radius: 12px;
    padding: 24px;
    text-align: center;
}

.stage-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--helperColor);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 60px;
    padding: 40px;
    margin: 0 auto 16px;
    box-shadow: 0 1px 20px #005cac98;
}

.stage-title {
    font-size: 25px;
    color: var(--lightHelper);
    font-weight: 700;
    margin-bottom: 10px;
}

.stage-desc {
    font-size: 18px;
    color: var(--muted);
}
@media (max-width: 912px) {
    .stages-row {
        flex-direction: column;
    }
    .stages-col {
        display: flex;
        width: 100%;
    }
    .stages-img{
        width: 50%;
    }
}
@media (max-width: 576px) {
    .stages-col {
        flex-direction: column;
        width: 100%;
    }
}