.hero-container {
    display: flex;
    padding-top: 108px;
    flex-direction: column;
    overflow: hidden;
}

.hero-wrapper {
    background-color: rgba(248, 241, 235, 1);
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    padding: 0 70px 18px;
}

.content-box {
    border-radius: 0 0 12px 12px;
    background-color: rgba(255, 255, 255, 1);
    z-index: 10;
    margin-top: -108px;
    width: 1136px;
    max-width: 100%;
    padding: 25px 77px 42px;
}

.content-layout {
    gap: 20px;
    display: flex;
}

.text-column {
    display: flex;
    flex-direction: column;
    line-height: normal;
    width: 62%;
    margin-left: 0;
}

.text-content {
    display: flex;
    flex-direction: column;
    font-family: Inter, sans-serif;
    color: rgba(0, 0, 0, 1);
}

.hero-title {
    font-size: 54px;
    font-weight: 600;
    margin-right: 24px;
}

.hero-description {
    font-size: 14px;
    font-weight: 500;
    line-height: 19px;
    margin-top: 49px;
}

.image-column {
    display: flex;
    flex-direction: column;
    line-height: normal;
    width: 38%;
    margin-left: 20px;
}

.hero-image {
    aspect-ratio: 1.32;
    object-fit: contain;
    object-position: center;
    width: 100%;
    border-radius: 0 0 12px 12px;
    margin-top: 22px;
    flex-grow: 1;
}

.how-it-works-container {
    background-color: rgba(248, 241, 235, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    align-items: center;
    font-family: Inter, sans-serif;
    justify-content: center;
    padding: 55px 80px;
}

.content-wrapper {
    display: flex;
    width: 100%;
    max-width: 1131px;
    flex-direction: column;
}

.section-title-wrapper {
    align-self: center;
    display: flex;
    width: 691px;
    max-width: 100%;
    flex-direction: column;
    font-size: 36px;
    color: rgba(0, 0, 0, 1);
    font-weight: 600;
    text-align: center;
}

.section-title {
    width: 100%;
}

.steps-container {
    display: flex;
    margin-top: 45px;
    width: 100%;
    flex-direction: column;
}

.odd-step-container {
    align-self: start;
    display: flex;
    align-items: start;
    gap: 40px 53px;
    flex-wrap: wrap;
}

.even_step_container {
    align-self: start;
    display: flex;
    margin-top: 47px;
    align-items: start;
    gap: 40px 51px;
    flex-wrap: wrap;
}

.step-content-wrapper {
    display: flex;
    min-width: 240px;
    align-items: start;
}

.step-content {
    display: flex;
    min-width: 240px;
    align-items: start;
    gap: 12px;
    flex-wrap: wrap;
}

.step-number {
    color: rgba(109, 109, 109, 0.46);
    font-size: 90px;
    font-weight: 600;
    width: 50px;
}

.step-text-content {
    display: flex;
    min-width: 240px;
    flex-direction: column;
    color: rgba(0, 0, 0, 1);
    width: 490px;
}

.step-title {
    font-size: 27px;
    font-weight: 600;
}

.step-description {
    font-size: 13px;
    font-weight: 500;
    line-height: 18px;
    margin-top: 9px;
}

.step-image {
    aspect-ratio: 1.71;
    object-fit: contain;
    object-position: center;
    width: 488px;
    border-radius: 12px;
    min-width: 240px;
}

.bold-text {
    font-weight: 700;
}

@media (max-width: 991px) {
    .hero-container {
        padding-top: 100px;
    }

    .hero-wrapper {
        max-width: 100%;
        padding: 0 20px;
    }

    .content-box {
        padding: 0 20px;
        margin-top: 0;
        z-index: 0;
    }

    .content-layout {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .text-column {
        width: 100%;
    }

    .text-content {
        max-width: 100%;
        margin: 25px -16px 0 0;
    }

    .hero-title {
        max-width: 100%;
        margin-right: 10px;
        font-size: 40px;
    }

    .hero-description {
        max-width: 100%;
        margin-top: 40px;
    }

    .image-column {
        width: 100%;
    }

    .hero-image {
        margin-top: 40px;
    }

    .how-it-works-container {
        padding: 0 20px;
    }

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

    .steps-container {
        max-width: 100%;
        margin-top: 40px;
    }

    .odd-step-container,
    .step-content-wrapper,
    .step-content,
    .step-text-content,
    .step-description,
    .step-image,
    .even_step_container {
        max-width: 100%;
    }

    .step-number {
        font-size: 40px;
    }

    .even_step_container {
        margin-top: 40px;
    }
}