/* global React */
function ServicesSection() {
const services = [
{
eyebrow: "Core Services",
title: "Monthly Bookkeeping",
body: "Your books kept current every month, with clean reports you can actually read.",
bullets: ["Transaction categorization", "Statement reconciliations", "Monthly reports"],
color: "var(--terracotta-400)",
},
{
eyebrow: "Catch-ups",
title: "Behind on your books?",
body: "Not a problem. We'll get you up to date fast, then move you onto a steady monthly rhythm.",
bullets: ["Any number of months back", "Flat fee, quoted up front", "Tidy, reconciled records when we're done"],
color: "var(--forest-400)",
},
{
eyebrow: "Optional Services",
title: "Need more? Just ask.",
body: "Depending on what your business needs, we can take more off your plate:",
bullets: ["A/R management", "A/P management", "Payroll", "Sales tax & 1099 filings"],
color: "var(--marigold-500)",
},
];
return (