 <!-- Optional CSS for button styling -->
         .read-more-btn {
            background-color: #ff6b00;
            color: #fff;
            border: none;
            padding: 10px 25px;
            font-size: 16px;
            font-weight: 600;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
            margin-top: 15px;
        }

        .read-more-btn:hover {
            background-color: #ff8500;
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
        }

        .read-more-btn:active {
            transform: translateY(0);
            box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
        }
 :root {
        --fq-primary: #192f59;
        --fq-accent: #ff970d;
        --fq-bg: #f7f9fc;
        --fq-radius: 14px;
    }


    .fq-section {
        max-width: 1200px;
        margin: auto;
        padding: 32px 20px;
        background: #fff;
        border-radius: var(--fq-radius);
        box-shadow: 0 4px 24px rgba(25, 47, 89, 0.07);
    }

    .fq-title {
        font-size: 2.2rem;
        font-weight: 700;
        color: var(--fq-primary);
        margin-bottom: 18px;
    }

    .fq-divider {
        height: 3px;
        width: 60px;
        background: var(--fq-accent);
        border: none;
        margin: 0 0 32px 0;
        border-radius: 2px;
    }

    .fq-faq-list {
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .fq-faq-item {
        margin-bottom: 18px;
        border-radius: var(--fq-radius);
        background: var(--fq-bg);
        box-shadow: 0 1px 4px rgba(25, 47, 89, 0.03);
    }

    .fq-faq-q {
        cursor: pointer;
        padding: 18px 20px;
        font-weight: 600;
        color: var(--fq-primary);
        position: relative;
    }

    .fq-faq-q:after {
        content: '+';
        position: absolute;
        right: 24px;
        color: var(--fq-accent);
        font-size: 1.3em;
        transition: transform 0.2s;
    }

    .fq-faq-item.fq-open .fq-faq-q:after {
        content: '-';
        transform: rotate(180deg);
    }

    .fq-faq-a {
        max-height: 0;
        overflow: hidden;
        background: #fff;
        color: #2d3e5e;
        padding: 0 20px;
        transition: max-height 0.3s, padding 0.3s;
    }

    .fq-faq-item.fq-open .fq-faq-a {
        max-height: 200px;
        padding: 14px 20px 18px 20px;
    }

    @media (max-width: 700px) {
        .fq-section {
            padding: 18px 4vw;
        }
    }