  /* 🌿 الأسئلة الشائعة */
        .raha-faq {
            background-color: #fff;
        }

        .raha-accordion {
            max-width: 850px;
            margin: 0 auto;
        }

        .raha-faq-item {
            border: none;
            border-radius: 12px;
            overflow: hidden;
        }

        .raha-faq-btn {
            /* background-color: #f8f8f8; */
            background-color: rgba(244, 244, 244, 1);

            border: none;
            font-weight: 600;
            color: rgba(61, 61, 61, 1);
            box-shadow: none;
            padding: 18px 20px;
            border-radius: 12px;
            transition: all 0.3s ease;
            position: relative;
            padding: 1.5rem !important;
            border-radius: 24px;
        }


        .raha-faq-btn::after {
            display: none;
            /* إخفاء السهم الافتراضي من Bootstrap */
        }

        .raha-faq-btn::before {
            content: "+";
            font-size: 22px;
            font-weight: 700;
            color: #464646;
            background: #fff;
            border-radius: 10px;
            width: 42px;
            height: 42px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-left: 12px;
            transition: 0.3s;
            position: absolute;
            left: 0px;
        }

        .raha-faq-btn[aria-expanded="true"] {
            background-color: #fff;
            border: 1px solid #eee;
            color: #000;
            border-bottom-left-radius: 0;
            border-bottom-right-radius: 0;
        }

        .raha-faq-btn[aria-expanded="true"]::before {
            content: "×";
            color: rgba(61, 61, 61, 1);
            transform: rotate(180deg);
            background: #f4f4f4;
        }

        .raha-faq-body {
            background-color: #fff;
            border: 1px solid #eee;
            border-top: none;
            border-radius: 0 0 12px 12px;
            padding: 15px 25px;
            color: #555;
            font-size: 1.2rem;
            line-height: 1.8;
        }
        .accordion-item:first-of-type .accordion-button{
            font-size: 24px;
    font-weight: 500;
    text-align: start;
        }
        @media(max-width:758px)
        {
            .accordion-item:first-of-type .accordion-button{
                 font-size: 20px;
            }
        }