.faq_section_r {
        padding: 60px 0;
        background-color: #fcfdfe;
    }

    .all_section_heading {
        padding: 15px;
        text-align: center;
        font-size: 24px;
        font-weight: 700;
        color: #fff;
        margin: 0;
        /* text-shadow: 2px 2px #1a1a1a; */
        background: #28a745;
    }


    /* Header Styling */
    .all_section_heading h1 {
        background: linear-gradient(to right, rgba(0, 158, 235, 1), #37ace2);
        /* Matches the bright blue in image_f3b3c1 */
        color: #ffffff;
        font-size: 1.2rem !important;
        font-weight: 800;
        margin: 0;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    /* Accordion Box */
    .review_box {
        border: 1px solid #eef2f6;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    }

    /* Individual Card Styling */
    .faq_section_r .card {
        border: none;
        border-bottom: 1px solid #f0f4f8;
        margin-bottom: 0;
        background: #fff;
    }

    .faq_section_r .card:last-child {
        border-bottom: none;
    }

    /* Button/Header Styling */
    .faq_section_r .card-header {
        background: #ffffff;
        padding: 0;
        border: none;
    }

    .faq_section_r .btn-link {
        width: 100%;
        text-align: left;
        text-decoration: none;
        color: #334155;
        padding: 18px 25px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: all 0.3s ease;
    }

    .faq_section_r .btn-link h3 {
        font-size: 0.9rem;
        margin: 0;
        font-weight: 500;
    }

    .faq_section_r .btn-link:hover {
        background-color: #f8fafc;
        color: #24a8e0;
    }

    /* Icon rotation for active state */
    .faq_section_r .btn-link::after {
        content: "\f078";
        /* FontAwesome Down Arrow */
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        font-size: 0.8rem;
        transition: transform 0.3s ease;
    }

    .faq_section_r .btn-link[aria-expanded="true"]::after {
        transform: rotate(180deg);
    }

    /* Body Styling */
    .faq_section_r .card-body {
        padding: 10px 25px 10px 25px;
        color: #64748b;
        font-size: 0.95rem;
        line-height: 1.6;
    }

    @media (max-width: 576px) {
        .all_section_heading h1 {
            font-size: 1rem !important;
        }

        .faq_section_r .btn-link h3 {
            font-size: 0.8rem;
        }

        .faq_section_r .card-body {
            padding: 6px 24px 8px 25px;

            font-size: 0.8rem;
        }

        .faq_section_r .btn-link {
            padding: 15px 25px;

        }

        .faq_section_r {
            padding: 39px 0px 25px 0px;
        }
    }