.howItWorks {
    padding: 96px;
    margin: 0;
    text-align: center;
    background-color: var(--main-blue);
    color: white;
}

.howItWorks h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 64px;
}

.howItWorksContainer {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
}

.howItWorksItem {
    max-width: 384px;
    text-align: left;
}

.howItWorksItem h4 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 24px;
}

.howItWorksItem p {
    font-size: 18px;
    font-weight: 300;
    max-width: 350px;
    line-height: 172%;
}


@media(max-width:890px){
    .howItWorksContainer {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 24px;
}
    .howItWorks {
    padding: 48px;
    }
    .howItWorksItem h4 {
        font-size: 24px;
        font-weight: 500;
        margin-bottom: 5px;
    }
    .howItWorksItem {
        max-width: 384px;
        text-align: center;
    }
}

@media(max-width:550px){
.howItWorks h2 {
  font-weight: 600;
font-size: 22px;
line-height: 136%;
    margin-bottom: 32px;
}
    .howItWorksItem h4 {
        font-size: 18px;
        line-height: 122%;
        margin-bottom: 8px;
    }
.howItWorksContainer {
    row-gap: 48px;
}
.howItWorksItem p {
    font-size: 16px;
    line-height: 150%;
}



}