/* ========================= */
/* SECTION STYLING */
/* ========================= */

.qs-why-section {
    padding: 80px 8%;
    padding-bottom: 0px;
}

.qs-main-title {
    text-align: center;
    font-size: 38px;
    margin-bottom: 70px;
    color: #e65100;
}

.qs-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 100px;
}

.qs-row.qs-reverse {
    flex-direction: row-reverse;
}

.qs-content {
    flex: 1.2;
}

.qs-image {
    flex: 0.9;
}

.qs-image img {
    width: 100%;
    border-radius: 14px;
}

/* Content Styling */

.qs-content h3 {
    font-size: 30px;
    margin-bottom: 20px;
    color: #bf360c;
}

.qs-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.qs-stats {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.qs-stats h4 {
    font-size: 24px;
    color: #ff6f00;
}

.qs-stats p {
    font-size: 15px;
    color: #666;
}

.qs-btn {
    display: inline-block;
    padding: 12px 26px;
    background: #ff6f00;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.3s ease;
}

.qs-btn:hover {
    background: #e65100;
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */

@media (max-width: 992px) {

    .qs-row,
    .qs-row.qs-reverse {
        flex-direction: column;
        text-align: center;
    }

    .qs-content,
    .qs-image {
        flex: 1;
    }

    .qs-stats {
        justify-content: center;
        gap: 30px;
    }

    .qs-image img {
        margin-top: 25px;
    }
}