.how-it-works {
    padding: 50px 0px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    /* Ensure anchor scroll positions this section below the fixed header */
    scroll-margin-top: calc(var(--header-height));
}

.how-it-works .left-img,
.how-it-works .right-img {
    width: 25%;
    display: flex;
    align-items: end;
}

.how-it-works .right-img {
    text-align: right;
}

.how-it-works .left-img img,
.how-it-works .right-img img {
    max-width: 100%;
}

.how-it-works .how-content-area {
    width: 50%;
    padding: 20px;
}

.how-it-works .how-content-area h2 {
    padding: 0;
    margin: 0;
    font-size: 3.75rem;
    font-weight: 600;
    text-align: center;
}

.how-it-works .how-content-area p {
    padding: 10px 0 20px 0;
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}


.how-steps {
    max-width: 600px;
    margin: 0 auto;
}

.how-steps .each-step {
    display: flex;
    width: 100%;
    gap: 20px;
    align-items: center;
    padding: 20px;
}

.how-steps .each-step .number {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: var(--light-grey-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
}

.how-steps .each-step h3 {
    padding: 0;
    margin: 0;
    font-size: 1.375rem;
    font-weight: 600;
}

.how-steps .each-step p {
    padding: 5px 0 0 0;
    margin: 0;
    font-size: 1.125rem;
}

@media screen and (max-width: 1024px) {
    .how-it-works {
        flex-direction: column;
        align-items: center;
        padding: 20px;
    }

    .how-it-works .left-img,
    .how-it-works .right-img {
        width: 100%;
        justify-content: center;
        text-align: center;
        display: none;
    }

    .how-it-works .how-content-area {
        width: 100%;
        padding: 0;
    }

    .how-it-works .how-content-area h2 {
        font-size: 2rem;
    }

}

@media screen and (max-width: 768px) {
    .how-steps .each-step {
        flex-direction: column;
        text-align: center;
        padding: 10px 0;
    }

    .how-steps .each-step .number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}