Files
aia-website/www/src/components/ConsultationCTA.astro
T
DeCentN2Madness 21cb521d32 refactor(styles): move component-specific CSS into Astro components
- relocate header, footer, nav, hero, and page-hero styles into their owning components
- move blog index, blog post, team, video, insurance, CTA, and home-section styles out of the global sheet
- keep  focused on shared primitives such as buttons, cards, links, and list styling
- preserve existing layout and responsive behavior while reducing global CSS scope
2026-06-15 16:31:54 -07:00

12 lines
463 B
Plaintext

<section class="cta-band">
<div class="container split">
<div><p class="eyebrow">Start the conversation</p><h2>Find the right support for your learner.</h2></div>
<a class="button button-light" href="/client-consultation">Schedule a Free Consultation</a>
</div>
</section>
<style>
.cta-band { background: var(--color-primary); color: white; padding-block: var(--space-xl); }
.cta-band h2, .cta-band .eyebrow { color: white; margin: 0; }
</style>