Policies and Publications https://cdn.tailwindcss.com tailwind.config = { theme: { extend: { colors: { 'native-link': '#8B2C33', }, } } } body { font-family: 'Inter', sans-serif; background-color: white; color: #000000; } .link-color { color: #8B2C33; text-decoration: none; transition: color 0.15s; } .link-color:hover { color: #a82c33; text-decoration: underline; } html { scroll-behavior: smooth; } .category-scroll-target { scroll-margin-top: 120px; }

Policies and Publications

function scrollToCategory(categoryId) { const element = document.getElementById(categoryId); if (element) { element.scrollIntoView({ behavior: 'smooth', block: 'start' }); } }