function About({ onCTA }) {
  return (
    <section className="section" id="about">
      <div className="container">
        <div className="why-grid">
          <div>
            <span className="eyebrow">About Bevy Electric</span>
            <h2 className="h2" style={{marginTop:16, marginBottom:24}}>Family-owned, licensed, and built on doing it <em>right.</em></h2>
            <p className="lede" style={{marginBottom:20}}>
              Bevy Electric is a family-owned electrical company based in Lincoln, CA, serving Sacramento and the surrounding area. Our licensed team has powered hundreds of homes and businesses across the region, and EV charger installs are one of the things we do most.
            </p>
            <p className="lede" style={{marginBottom:28}}>
              We treat every property like it's our own. That means showing up on time, giving you honest pricing with no surprises, and making sure your home's electrical setup is actually safe to handle a fast charger before we install one.
            </p>
            <button className="btn btn-primary btn-lg" onClick={onCTA}>
              Get My Free Estimate <Ic.arrow />
            </button>
          </div>
          <div>
            <div className="why-visual" style={{overflow:'hidden', borderRadius:'var(--radius-lg)'}}>
              <img src="assets/about-bevy.jpeg" alt="Bevy Electric technician installing a Level 2 EV charger at a Sacramento home, branded service van in the driveway" style={{width:'100%', height:'100%', objectFit:'cover', display:'block'}} />
            </div>
          </div>
        </div>
      </div>
    </section>
  );
}
window.About = About;
