.fq-page-section {
            position: relative;
            overflow: hidden;
            padding: 90px 0 5px;
            background:
                radial-gradient(circle at 8% 10%, rgba(249, 115, 22, 0.08), transparent 28%),
                radial-gradient(circle at 92% 18%, rgba(14, 165, 233, 0.07), transparent 30%),
                linear-gradient(180deg, #ffffff 0%, #fffaf3 100%);
        }

        .fq-page-heading {
            max-width: 760px;
            margin: 0 auto 42px;
            text-align: center;
        }

        .fq-page-heading span {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 12px;
            padding: 8px 18px;
            border-radius: 999px;
            color: #f97316;
            background: rgba(249, 115, 22, 0.10);
            border: 1px solid rgba(249, 115, 22, 0.18);
            font-size: 13px;
            font-weight: 800;
            line-height: 1.2;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }

        .fq-page-heading h1 {
            position: relative;
            display: inline-block;
            margin: 0 0 16px;
            color: #172033;
            font-size: 42px;
            font-weight: 950;
            line-height: 1.15;
            letter-spacing: -0.8px;
        }

        .fq-page-heading h1::after {
            content: "";
            position: absolute;
            left: 50%;
            bottom: -10px;
            width: 86px;
            height: 4px;
            border-radius: 999px;
            background: linear-gradient(90deg, #ff9f1c, #f97316);
            transform: translateX(-50%);
        }

        .fq-page-heading p {
            max-width: 680px;
            margin: 22px auto 0;
            color: #64748b;
            font-size: 16px;
            font-weight: 500;
            line-height: 1.85;
        }

        .fq-list {
            max-width: 980px;
            margin: 0 auto;
        }

        .fq-item {
            margin-bottom: 16px;
            border-radius: 20px;
            background: #ffffff;
            border: 1px solid rgba(15, 23, 42, 0.08);
            box-shadow: 0 14px 38px rgba(15, 23, 42, 0.07);
            overflow: hidden;
        }

        .fq-question {
            position: relative;
            width: 100%;
            min-height: 68px;
            padding: 20px 64px 20px 24px;
            border: 0;
            background: #ffffff;
            color: #172033;
            font-size: 17px;
            font-weight: 900;
            line-height: 1.45;
            text-align: left;
            cursor: pointer;
            transition: all 0.22s ease;
        }

        .fq-question:hover {
            color: #f97316;
        }

        .fq-question::after {
            content: "+";
            position: absolute;
            top: 50%;
            right: 22px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 34px;
            height: 34px;
            border-radius: 12px;
            color: #ffffff;
            background: linear-gradient(135deg, #ff9f1c, #f97316);
            font-size: 20px;
            font-weight: 900;
            transform: translateY(-50%);
            transition: all 0.22s ease;
        }

        .fq-item.active .fq-question::after {
            content: "-";
        }

        .fq-answer {
            display: none;
            padding: 0 24px 24px;
        }

        .fq-item.active .fq-answer {
            display: block;
        }

        .fq-answer p {
            margin: 0;
            color: #64748b;
            font-size: 15px;
            font-weight: 500;
            line-height: 1.85;
        }

        .fq-empty-box {
            padding: 32px;
            border-radius: 22px;
            background: #fff;
            border: 1px solid rgba(15, 23, 42, 0.08);
            color: #64748b;
            font-size: 16px;
            font-weight: 700;
            text-align: center;
            box-shadow: 0 12px 34px rgba(15, 23, 42, 0.08);
        }

        .fq-pagination-wrap {
            margin-top: 42px;
        }

        .fq-pagination {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 9px;
            flex-wrap: wrap;
            margin: 0;
            padding: 0;
            list-style: none;
        }

        .fq-pagination li a,
        .fq-pagination li span {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 42px;
            height: 42px;
            padding: 0 14px;
            border-radius: 999px;
            background: #fff;
            color: #172033;
            border: 1px solid rgba(15, 23, 42, 0.08);
            font-size: 14px;
            font-weight: 850;
            text-decoration: none;
            box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
            transition: all 0.22s ease;
        }

        .fq-pagination li.active a,
        .fq-pagination li a:hover {
            color: #fff;
            background: linear-gradient(135deg, #ff9f1c, #f97316);
            border-color: transparent;
        }

        @media (max-width: 767px) {
            .fq-page-section {
                padding: 65px 0 55px;
            }

            .fq-page-heading h1 {
                font-size: 31px;
            }

            .fq-page-heading p {
                font-size: 14px;
                line-height: 1.75;
            }

            .fq-question {
                padding: 18px 58px 18px 18px;
                font-size: 15px;
            }

            .fq-question::after {
                right: 16px;
                width: 32px;
                height: 32px;
            }

            .fq-answer {
                padding: 0 18px 20px;
            }
        }