- 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
12 lines
463 B
Plaintext
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>
|