

.how-it-work-section {
    padding: 104px 0 80px;
    background-color: #092033;
    color: #fff;
}

.howitwork-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.illustration-wrapper {
    position: relative;
    width: 100%;
    max-width: 600px;
}

.howitwork-wrapper .left-section{
    display: flex;
    align-items: center;
}

.illustration-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.right-section {
    color: #ffffff;
}

.section-title {
    font-size: 30px;
    line-height: 1.4;
    font-weight: 600;
    margin-bottom: 50px;
    color: #ffffff;
}

.stages-container {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.stage {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.stage-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border: 2px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    color: #00B152;
    background: transparent;
}

.stage-content {
    flex: 1;
    padding-top: 4px;
}

.stage-title {
    font-size: 24px;
    line-height: 1.3;
    font-weight: 600;
    margin-bottom: 18px;
    color: #fff;
}

.stage-description {
    font-size: 18px;
    color: #ffffff9b;
    line-height: 1.6;
    font-weight: 400;
}

@media (max-width: 1599px) {
    .how-it-work-section {
        padding: 80px 0;
    }
}

@media (max-width: 1399px) {
    .how-it-work-section {
        padding: 70px 0;
    }
}

@media (max-width: 1024px) {

    .howitwork-wrapper {
        gap: 40px;
    }

    .how-it-work-section {
        padding: 60px 0;
    }

}

@media (max-width: 768px) {

    .howitwork-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .illustration-wrapper {
        max-width: 100%;
    }

    .section-title {
        font-size: 28px;
        line-height: 1.3;
        margin-bottom: 30px;
    }

    .stage-title {
        font-size: 20px;
    }

    .stage-description {
        font-size: 15px;
    }

    .how-it-work-section {
        padding: 50px 0;
    }

    .stages-container {
        padding-top: 20px;
    }
}

@media (max-width: 575px) {

    .section-title {
        font-size: 26px;
        margin-bottom: 12px;
        line-height: 1.2;
    }

    .stage {
        gap: 14px;
    }

    .stage-number {
        width: 34px;
        height: 34px;
        font-size: 14px;
    }

    .how-it-work-section {
        padding: 40px 0;
    }
}