/* About Us */
.how-it-work {
    padding: 50px 0;
}

.how-it-work .row {
    display: flex;
    align-items: center;
}

.how-it-work .img-wrap {
    flex: 1;
    text-align: right;
}

.how-it-work .img-wrap img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.how-it-work .content-info-wrap {
    flex: 1;
    padding-left: 30px;
}

.how-it-work h2 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

.how-it-work p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

/* Responsive styling */
@media (max-width: 767px) {
    .how-it-work .row {
        flex-direction: column;
        text-align: center;
    }

    .how-it-work .content-info-wrap {
        padding-left: 0;
        padding-top: 20px;
    }

    .how-it-work h2 {
        font-size: 24px;
    }

    .how-it-work p {
        font-size: 15px;
    }
}
 
/*  End About Us */
