.how-it-works .title h2 {
    font-size: 64px;
    font-weight: 600;
    line-height: 80px;
    margin-bottom: 30px;
}
.how-it-works .cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.how-it-works .card-item {
    background: var(--theme-primary-light);
    padding: 16px;
    border-radius: 16px;
}
.how-it-works .card-item .img {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    margin-bottom: 30px;
}
.how-it-works .card-item .img img {
    width: 80px;
    aspect-ratio: 1/1;
    object-fit: contain;
}
.how-it-works .card-item h3 {
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    margin-bottom: 10px;
}
.how-it-works .card-item p {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}
@media screen and (max-width: 1200px) {
    .how-it-works .cards {
        gap: 20px;
    }
    .how-it-works .card-item h3 {
        font-size: 1.5rem;
        line-height: 1.4; 
        margin-bottom: 5px;
    }
    .how-it-works .card-item p {
        font-size: 1rem;
        line-height: 1.4;
    }
}
@media screen and (max-width: 991px) {
    .how-it-works .title {
        margin-bottom: 0;
    }
    .how-it-works .title h2 {
        font-size: 2rem;
        line-height: 1.4;
        margin-bottom: 10px;
    }
    .how-it-works .cards {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 15px;
    }
    .how-it-works .card-item {
        max-width: 400px;
        margin: 0 auto;
        display: flex;
        justify-content: center;
        align-items: stretch;
    }
    .how-it-works .card-item .img {
        width: 64px;
        min-width: 64px;
        max-width: 64px;
        margin-right: 15px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 0px;
    }
    .how-it-works .card-item h3 {
        line-height: 1.1;
        margin-bottom: 15px;
    }
}


.how-it-works .container {
    width: 100%;
    margin-right: auto;
    margin-left: auto
}