.benefits-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 45px 0 35px;
    background: linear-gradient(115deg,
            rgba(255, 220, 36, 0.98),
            rgba(255, 224, 45, 0.88));

    border-top: 6px solid #000;
}

.benefits-section .table_img_div {}

.benefits-section .table_img_div img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =========================
   MAIN HEADING
========================= */

.benefits-section .benefits-heading {
    text-align: center;
    margin-bottom: 5px;
}

.benefits-section .benefits-heading h2 {
    margin: 0;
    color: #000;
    font-size: 34px;
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -0.5px;
}

/* =========================
   RIGHT DETAILS
========================= */

.benefits-section .details-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding-top: 0;
}

.benefits-section .detail-item {
    margin-bottom: 15px;
}

.benefits-section .detail-item h3 {
    margin: 0 0 8px;
    color: #008dd2;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 800;
}

.benefits-section .detail-item p {
    margin: 0;
    color: #111;
    font-size: 14px;
    line-height: 1.45;
    font-weight: 500;
}

/* =========================
   TABLET
========================= */

@media (min-width: 768px) and (max-width: 991.98px) {
    .benefits-section .benefits-heading {}

    .benefits-section .benefits-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .benefits-section .details-wrapper {
    }
}

/* =========================
   MOBILE
========================= */

@media (min-width: 576px) and (max-width: 767.98px) {
    .benefits-section {
        padding: 30px 0;
    }

    .benefits-section .details-wrapper {
        gap: 5px;
    }

    .benefits-section .detail-item {
        margin-bottom: 18px;
    }

    .benefits-section .detail-item h3 {
        font-size: 14px;
    }

    .benefits-section .detail-item p {
        font-size: 12px;
        line-height: 1.5;
    }
}

/* =========================
   SMALL MOBILE
========================= */

@media (min-width: 0px) and (max-width: 575.98px) {
    .benefits-section .benefits-heading h2 {
        font-size: 25px;
    }

    .benefits-section .details-wrapper {
        grid-template-columns: 1fr;
        gap: 5px;
    }
}