
<script>
    document.addEventListener('DOMContentLoaded', function() {

        // Loop through each FAQ group independently
        var faqGroups = document.querySelectorAll('.faq-group');

        faqGroups.forEach(function(group) {

            // Get all FAQ items within the current group only
            var faqItems = group.querySelectorAll('.faq-item');

            faqItems.forEach(function(item, index) {

                var question = item.querySelector('.faq-question');
                var answer = item.querySelector('.faq-answer');

                if (!question || !answer) {
                    return;
                }

                // ==========================================
                // Default State
                // Open only the first accordion in this group
                // ==========================================
                if (index === 0) {
                    item.classList.add('open');
                    question.setAttribute('aria-expanded', 'true');
                    answer.style.display = 'block';
                } else {
                    item.classList.remove('open');
                    question.setAttribute('aria-expanded', 'false');
                    answer.style.display = 'none';
                }

                // ==========================================
                // Accordion Click
                // ==========================================
                question.addEventListener('click', function() {

                    var isOpen = item.classList.contains('open');

                    // Close ONLY other accordions inside THIS group
                    faqItems.forEach(function(otherItem) {

                        if (otherItem === item) {
                            return;
                        }

                        var otherQuestion = otherItem.querySelector('.faq-question');
                        var otherAnswer = otherItem.querySelector('.faq-answer');

                        otherItem.classList.remove('open');

                        if (otherQuestion) {
                            otherQuestion.setAttribute('aria-expanded', 'false');
                        }

                        if (otherAnswer) {
                            otherAnswer.style.display = 'none';
                        }
                    });

                    // Toggle the clicked accordion
                    if (isOpen) {

                        // Close current accordion
                        item.classList.remove('open');
                        question.setAttribute('aria-expanded', 'false');
                        answer.style.display = 'none';

                    } else {

                        // Open current accordion
                        item.classList.add('open');
                        question.setAttribute('aria-expanded', 'true');
                        answer.style.display = 'block';

                    }

                });

            });

        });

    });
</script>

<style>
    /* ─── CATEGORY TABS ─── */
    .category-tabs {
        padding: 0 48px;
        background: var(--white);
        border-bottom: 1px solid var(--fog);
        position: sticky;
        top: 72px;
        z-index: 50;
    }

    .tabs-inner {
        max-width: 1280px;
        margin: 0 auto;
        display: flex;
        gap: 6px;
        padding: 16px 0;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .chip {
        padding: 8px 20px;
        border-radius: 100px;
        border: 1px solid var(--fog);
        background: var(--white);
        font-family: var(--font);
        font-size: 14px;
        font-weight: 500;
        color: var(--sage);
        cursor: pointer;
        transition: all var(--dur) var(--ease);
        white-space: nowrap;
        flex-shrink: 0;
    }

    .chip:hover {
        border-color: var(--stone);
        color: var(--ink);
    }

    .chip.active {
        background: var(--ink);
        border-color: var(--ink);
        color: var(--white);
    }

    /* ─── FAQ ACCORDION ─── */
    .faq-group {
        margin-bottom: 56px;
    }

    .faq-group:last-child {
        margin-bottom: 0;
    }

    .faq-group-title {
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: var(--ember);
        margin-bottom: 20px;
        padding-bottom: 12px;
        border-bottom: 2px solid var(--fog);
    }

    .faq-item {
        border-bottom: 1px solid var(--fog);
    }

    .faq-question {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 0;
        background: none;
        border: none;
        cursor: pointer;
        font-family: var(--font);
        font-size: 17px;
        font-weight: 600;
        color: var(--ink);
        text-align: left;
        transition: color var(--dur) var(--ease);
    }

    .faq-question:hover {
        color: var(--ember);
    }

    .faq-question ion-icon {
        font-size: 20px;
        color: var(--ember);
        flex-shrink: 0;
        margin-left: 16px;
        transition: transform var(--dur) var(--ease);
    }

    .faq-item.open .faq-question ion-icon {
        transform: rotate(180deg);
    }

    .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--dur) var(--ease), padding var(--dur) var(--ease);
    }

    .faq-item.open .faq-answer {
        max-height: 400px;
    }

    .faq-answer-inner {
        padding: 0 0 20px;
        font-size: 15px;
        color: var(--sage);
        line-height: 1.65;
    }
</style><?xml version="1.0" encoding="UTF-8"?><?xml-stylesheet type="text/xsl" href="//websiterefreshuat.nols.edu/main-sitemap.xsl"?>
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
	<sitemap>
		<loc>https://websiterefreshuat.nols.edu/post-sitemap1.xml</loc>
		<lastmod>2025-10-24T20:00:13+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://websiterefreshuat.nols.edu/post-sitemap2.xml</loc>
		<lastmod>2025-10-24T19:59:46+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://websiterefreshuat.nols.edu/post-sitemap3.xml</loc>
		<lastmod>2025-10-24T19:59:14+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://websiterefreshuat.nols.edu/post-sitemap4.xml</loc>
		<lastmod>2025-10-24T19:58:51+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://websiterefreshuat.nols.edu/post-sitemap5.xml</loc>
		<lastmod>2025-10-24T19:58:14+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://websiterefreshuat.nols.edu/post-sitemap6.xml</loc>
		<lastmod>2025-10-24T19:57:34+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://websiterefreshuat.nols.edu/post-sitemap7.xml</loc>
		<lastmod>2025-10-24T19:56:55+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://websiterefreshuat.nols.edu/post-sitemap8.xml</loc>
		<lastmod>2025-10-24T19:56:24+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://websiterefreshuat.nols.edu/post-sitemap9.xml</loc>
		<lastmod>2025-10-24T19:54:13+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://websiterefreshuat.nols.edu/post-sitemap10.xml</loc>
		<lastmod>2025-10-24T19:53:27+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://websiterefreshuat.nols.edu/post-sitemap11.xml</loc>
		<lastmod>2025-10-24T19:52:55+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://websiterefreshuat.nols.edu/post-sitemap12.xml</loc>
		<lastmod>2025-10-24T19:50:06+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://websiterefreshuat.nols.edu/post-sitemap13.xml</loc>
		<lastmod>2025-10-24T19:28:34+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://websiterefreshuat.nols.edu/page-sitemap.xml</loc>
		<lastmod>2026-07-21T10:03:09+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://websiterefreshuat.nols.edu/author_bio-sitemap1.xml</loc>
		<lastmod>2025-08-22T22:40:17+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://websiterefreshuat.nols.edu/author_bio-sitemap2.xml</loc>
		<lastmod>2025-08-22T22:15:07+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://websiterefreshuat.nols.edu/employees-sitemap.xml</loc>
		<lastmod>2026-06-03T17:28:12+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://websiterefreshuat.nols.edu/locations-sitemap.xml</loc>
		<lastmod>2025-08-25T12:23:10+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://websiterefreshuat.nols.edu/skills-sitemap.xml</loc>
		<lastmod>2025-09-08T15:27:07+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://websiterefreshuat.nols.edu/case-studies-sitemap.xml</loc>
		<lastmod>2025-06-20T14:41:36+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://websiterefreshuat.nols.edu/category-sitemap.xml</loc>
		<lastmod>2025-10-24T20:00:13+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://websiterefreshuat.nols.edu/product_cat-sitemap1.xml</loc>
		<lastmod>2026-07-21T09:20:14+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://websiterefreshuat.nols.edu/product_cat-sitemap2.xml</loc>
		<lastmod>2026-07-21T09:20:02+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://websiterefreshuat.nols.edu/local-sitemap.xml</loc>
		<lastmod>2025-07-09T13:07:00+00:00</lastmod>
	</sitemap>
</sitemapindex>
<!-- XML Sitemap generated by Rank Math SEO Plugin (c) Rank Math - rankmath.com -->