.how_to {
    padding: 90px 0;
    background-color: #ffff;
}
.how_to_wrapper {
    display: flex
;
    justify-content: space-between;
}
.instructions {
    flex: 1;
    padding-right: 20px;
    width: 49%;
}
.instructions h2 {
    color: #000;
    font-size: 40px;
    margin-bottom: 40px;
}
.how_to_steps_list {
    counter-reset: my-counter;
    list-style: none;
    padding: 0;
}
.buy-button {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #fa1b7a;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 20px;
    font-weight: bold;
    transition: 0.5s;
}
.step {
    margin-bottom: 15px;
    padding: 10px;
    border-bottom: 1px solid #fa1b7a;;
    font-size: 18px;
    color: #fff;
    display: flex;
    align-items: center;
    font-weight: 500;
    cursor: pointer;
    flex-wrap: wrap;
}
.step.active {
    background: #fa1b7a;;
    border-radius: 10px;
}
.step.active span {
    background-color: #fff;
}
.step.active h3 {
color: #fff;
}
.step.active p {
    color: #fff;
}
.step span {
    display: inline-block;
    background-color: #fa1b7a;;
    color: #fff;
    padding: 0;
    border-radius: 50%;
    margin-right: 10px;
    font-size: 15px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 30px;
}
.step.active span {
    color: #000
} 
.how_to_steps_list .step span::before {
    counter-increment: my-counter;
    content: counter(my-counter) "";
}
.step p {
    margin-top: 15px;
    font-size: 13px;
    margin-bottom: 11px;
    line-height: 1.5;
}
.mobile_img_how {
    display: none;
}
.image-section {
    flex: 1;
    text-align: center;
    width: 49%;
}
.image-section img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 100px;
}

.step h3 {
    color: rgba(0, 0, 0, .7);
}
.step p {
    color: rgba(0, 0, 0, .7);
}