.how-to-use-section {
    padding: 30px 20px 0 20px;
    background-color: #fff;
    font-family: 'Poppins', sans-serif;
}

.how-to-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.how-to-image {
    flex: 0 0 600px;
    height: 600px;
}

.how-to-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0;
}

.how-to-content {
    flex: 1;
}

.how-to-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    margin-top: 0;
    margin-bottom: 10px;
    color: #000;
}

.how-to-subtitle {
    font-size: 20px;
    font-weight: 700;
    color: #689abc;
    margin-bottom: 30px;
    margin-top: 0;
}

.step-item {
    font-size: 16px;
    line-height: 1.3;
    margin-bottom: 15px;
    color: #333;
}

.step-item strong {
    font-weight: 700;
    color: #000;
}

.beauty-tip-box {
    display: flex;
    align-items: center;
    border: 1px solid #83abcb;
    padding: 15px 20px;
    margin-top: 30px;
    background-color: #fcfcfc;
}

.tip-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    margin-right: 20px;
}

.tip-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.tip-text {
    font-size: 16px;
    line-height: 1.3;
    color: #689abc;
    font-weight: 500;
    margin: 0;
}

.action-area {
    margin-top: 50px;
    text-align: center;
    width: 100%;
}

@media (max-width: 992px) {
    .how-to-container {
        flex-direction: column;
        gap: 30px;
    }

    .how-to-use-section {
        padding: 30px 15px 0;
    }


    .how-to-image {
        flex: 0 0 auto;
        width: 100%;
        height: auto;
        max-height: 500px;
    }

    .how-to-title {
        font-size: 24px;
    }
}