.how-work-contents {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
}

.how-work-contents .main-title-white h3 {
    color: var(--text-color);
}

.how-work-items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    width: 90%;
}

.how-work-item {
    display: flex;
    flex-direction: column;
    background: var(--white-color);
    border-radius: 30px;
    padding: 24px;
    box-shadow: var(--box-shadow);
    width: 100%;
    flex: 1;
}

.how-work-header {
    display: flex;
    align-items: center;
    gap: 8px;
}

.how-wrok-image {
    width: 100%;
    height: 100%;
    min-width: 100px;
    min-height: 100px;
    max-width: 100px;
    max-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.how-wrok-image img {
    width: 100%;
    height: 100%;
}

.how-work-items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    width: 100%;
    background: var(--primary-color);
    padding: 16px;
    border-radius: 40px;
}

.how-work-title h3 {
    font-size: 24px;
    font-weight: 800;
    line-height: 42px;
    color: var(--primary-color);
}

.how-work-text p {
    font-size: 18px;
    line-height: 32px;
}


@media (max-width: 1400px) {
    .how-work-title h3 {
        font-size: 20px;
        line-height: 34px;
    }

    .how-work-item {
        padding: 20px;
    }

    .how-work-text p {
        font-size: 16px;
        line-height: 32px;
    }
}

@media (max-width: 1200px) {

    .how-work-contents {
        height: auto;
    }

    .how-wrok-image {
        min-width: 90px;
        min-height: 90px;
        max-width: 90px;
        max-height: 90px;
    }

    .how-work-title h3 {
        font-size: 18px;
        line-height: 32px;
    }

    .how-work-text p {
        font-size: 15px;
        line-height: 28px;
    }
}

@media (max-width: 992px) {
    .how-work-items {
        width: 100%;
        flex-direction: column;
        gap: 16px;
    }

    .how-work-contents {
        height: auto;
    }

    .how-wrok-image {
        min-width: 80px;
        min-height: 80px;
        max-width: 80px;
        max-height: 80px;
    }

    .how-work-title h3 {
        font-size: 17px;
        line-height: 32px;
    }
}

@media (max-width: 768px) {

    .how-wrok-image {
        width: 100px;
    }

    .how-work-title h3 {
        font-size: 20px;
    }

    .how-work-text p {
        font-size: 16px;
        line-height: 28px;
    }
}

@media (max-width: 576px) {
    .how-work-contents {
        gap: 0;
    }

    .how-work-item {
        padding: 16px;
    }

    .how-work-contents .main-title-white h3 {
        color: var(--text-color);
        text-align: center;
        line-height: 1.8;
    }

    .how-work-title h3 {
        font-size: 18px;
    }

    .how-work-text p {
        font-size: 15px;
        line-height: 28px;
    }
}

@media (max-width: 480px) {

    .how-wrok-image {
        min-width: 70px;
        min-height: 70px;
        max-width: 70px;
        max-height: 70px;
    }

    .how-work-title h3 {
        font-size: 17px;
    }
}

@media (max-width: 390px) {
    .how-work-contents {
        padding: 0;
    }

    .how-work-items {
        border-radius: 32px;
    }

    .how-work-item {
        border-radius: 20px;
    }

    .how-wrok-image {
        min-width: 60px;
        min-height: 60px;
        max-width: 60px;
        max-height: 60px;
    }
}

@media (max-width: 360px) {
    .how-wrok-image {
        min-width: 50px;
        min-height: 50px;
        max-width: 50px;
        max-height: 50px;
    }

    .how-work-title h3 {
        font-size: 16px;
    }

    .how-work-text p {
        font-size: 14px;
        line-height: 26px;
    }
}