const { Header } = window.AcornTitleDesignSystem_b6a569; const { LegalHero, PolicySection, PolicyList, ContactPanel, LegalPageNav, TOCNav, MobileTOC } = window; function SiteFooter() { return ( ); } const logoSizeOverride = ; const headerLinks = () => [ { label: 'Home', href: 'Acorn Homepage.html' }, { label: 'Buying', href: 'Buying.html' }, { label: 'Selling', href: 'Selling.html' }, { label: 'For Professionals', href: 'For Professionals.html' }, { label: 'About', href: 'About.html' }, { label: 'Contact', href: 'Contact.html' }, ]; function AppQuickLink() { React.useEffect(() => { const header = document.querySelector('header'); if (!header) return; const rightGroup = header.querySelector(':scope > div > div:last-child'); if (!rightGroup || rightGroup.querySelector('.app-quick-link')) return; const a = document.createElement('a'); a.href = 'https://app.acorn-title.com'; a.target = '_blank'; a.rel = 'noopener'; a.className = 'app-quick-link'; a.setAttribute('aria-label', 'Open the Acorn App'); a.style.cssText = 'display:flex;align-items:center;justify-content:center;width:42px;height:42px;flex-shrink:0;color:inherit'; a.innerHTML = ''; rightGroup.insertBefore(a, rightGroup.firstChild); return () => a.remove(); }, []); return null; } function LogoHomeLink() { React.useEffect(() => { const header = document.querySelector('header'); if (!header) return; const img = header.querySelector('img[alt="Acorn Title"]'); if (!img || img.closest('a')) return; const a = document.createElement('a'); a.href = 'Acorn Homepage.html'; a.setAttribute('aria-label', 'Acorn Title home'); a.style.cssText = 'display:flex;align-items:center'; img.parentNode.insertBefore(a, img); a.appendChild(img); return () => { if (a.parentNode) { a.parentNode.insertBefore(img, a); a.remove(); } }; }, []); return null; } function SubHeading({ children }) { return

{children}

; } const sections = [ { id: 'what-are-cookies', title: 'What Are Cookies?' }, { id: 'why-we-use-cookies', title: 'Why We Use Cookies' }, { id: 'types-of-cookies', title: 'Types of Cookies' }, { id: 'managing-cookies', title: 'Managing Cookies' }, { id: 'third-party-cookies', title: 'Third-Party Cookies' }, { id: 'changes-to-this-policy', title: 'Changes to This Policy' }, { id: 'contact-us', title: 'Contact Us' }, ]; function CookiePolicyPage() { const [activeId, setActiveId] = React.useState(sections[0].id); React.useEffect(() => { const els = sections.map((s) => document.getElementById(s.id)).filter(Boolean); let ticking = false; const update = () => { ticking = false; const offset = 110; let current = els[0]; for (const el of els) { if (el.getBoundingClientRect().top <= offset + 4) current = el; else break; } if (current) setActiveId(current.id); }; const onScroll = () => { if (!ticking) { ticking = true; requestAnimationFrame(update); } }; update(); window.addEventListener('scroll', onScroll, { passive: true }); window.addEventListener('resize', onScroll); return () => { window.removeEventListener('scroll', onScroll); window.removeEventListener('resize', onScroll); }; }, []); return (
{logoSizeOverride}
{ window.location.href = 'Order Title.html'; }} />

Cookies are small text files that are stored on your device when you visit a website.

They help websites remember information about your visit, improve functionality, enhance security, and provide a better browsing experience.

Cookies do not give us access to your computer or personal files.

Acorn uses cookies to help our website function properly and to better understand how visitors use our website.

Cookies help us:

Our goal is to make the Acorn website easier to use, not more complicated.

Essential Cookies

These cookies are required for the website to function properly.

They help with security, navigation, and core website functionality.

Without these cookies, certain features may not work correctly.

Performance & Analytics Cookies

These cookies help us understand how visitors interact with our website.

Information collected through analytics is generally aggregated and used to improve the website experience.

We do not use this information to personally identify visitors.

Preference Cookies

Preference cookies remember settings such as language, display preferences, or other choices that improve your browsing experience.

These cookies help make future visits more convenient.

Future Marketing Cookies

At this time, Acorn Title does not use advertising or marketing cookies for targeted advertising.

If marketing cookies are introduced in the future, this policy will be updated accordingly.

Most web browsers allow you to:

Disabling certain cookies may affect portions of the website or reduce functionality.

Browser settings vary by device and browser.

Refer to your browser's help documentation for instructions.

Certain trusted third-party services integrated into the Acorn website may also use cookies.

Examples may include:

These providers maintain their own privacy and cookie practices.

We encourage visitors to review their policies when appropriate.

We may update this Cookie Policy from time to time as our website evolves or legal requirements change.

The current revision date will always appear at the top of this page.

Questions regarding this Cookie Policy may be directed to:

Acorn Title
1100 NW Loop 410
Castle Hills, TX 78213} phone="(210) 465-3033" email="info@acorn-title.com" />
); } window.CookiePolicyPage = CookiePolicyPage;