.how-work-contents {
    position: relative;
    background-image: url('../assets/shape/shape.svg');
    background-repeat: no-repeat;
    background-position: center top;
    background-size: contain;
    background-color: var(--white-color);
    width: 100%;
    height: 532px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 70px;
}

.how-work-contents::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
}

.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);
}

.how-work-header {
    display: flex;
    align-items: center;
}

.how-wrok-image {
    width: 120px;

}

.how-wrok-image img {
    width: 100%;
    height: auto;
}

.how-work-items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
}

.how-work-title h3 {
    font-size: 24px;
    font-weight: 800;
    line-height: 42px;
    color: var(--secondary-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-work-contents {
        padding-top: 40px;
    }

    .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-contents {
        height: auto;
    }

    .how-work-title h3 {
        font-size: 17px;
        line-height: 32px;
    }
}

@media (max-width: 768px) {
    .how-work-items {
        width: 100%;
        flex-direction: column;
        gap: 16px;
    }

    .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 {
        background-color: #925932;
        padding: 24px;
        border-radius: 30px;
        background-image: none;
    }

    .how-work-item {
        padding: 16px;
    }

    .how-wrok-image {
        width: 80px;
    }

    .how-work-title h3 {
        font-size: 18px;
    }

    .how-work-text p {
        font-size: 15px;
        line-height: 28px;
    }
}

@media (max-width: 480px) {

    .how-wrok-image {
        width: 70px;
        height: 70px;
    }

    .how-work-title h3 {
        font-size: 17px;
    }
}

@media (max-width: 390px) {
    .how-work-item {
        border-radius: 20px;
    }
}

@media (max-width: 375px) {
    .how-wrok-image {
        width: 60px;
        height: 60px;
    }

    .how-work-title h3 {
        font-size: 16px;
    }

    .how-work-text p {
        font-size: 14px;
        line-height: 26px;
    }
}