
<script>
document.addEventListener('DOMContentLoaded', function () {
  var btn = document.createElement('div');
  btn.id = 'back-to-top';
  btn.textContent = '↑';
  document.body.appendChild(btn);

  var locked = false;
  var lastScrollY = window.scrollY;

  window.addEventListener('scroll', function () {
    var y = window.scrollY;

    if (locked) {
      if (y > lastScrollY && y > 300) {
        locked = false;
        btn.classList.add('show');
      } else {
        btn.classList.remove('show');
      }
    } else {
      if (y > 300) {
        btn.classList.add('show');
      } else {
        btn.classList.remove('show');
      }
    }

    lastScrollY = y;
  });

  btn.addEventListener('click', function () {
    locked = true;
    btn.classList.remove('show');
    btn.classList.remove('burst');
    void btn.offsetWidth;
    btn.classList.add('burst');
    window.scrollTo({ top: 0, behavior: 'smooth' });
  });
});
</script><?xml version="1.0" encoding="UTF-8"?><?xml-stylesheet type="text/xsl" href="//enrollmentcoverage.com/wp-content/plugins/wordpress-seo/css/main-sitemap.xsl"?>
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
	<sitemap>
		<loc>https://enrollmentcoverage.com/post-sitemap.xml</loc>
		<lastmod>2026-05-05T05:57:03+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://enrollmentcoverage.com/page-sitemap.xml</loc>
		<lastmod>2026-05-21T13:24:53+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://enrollmentcoverage.com/category-sitemap.xml</loc>
		<lastmod>2026-05-05T05:57:03+00:00</lastmod>
	</sitemap>
</sitemapindex>
<!-- XML Sitemap generated by Yoast SEO -->