function AboutEivi() {
  const features = [
    'Ireland-only',
    'Local community',
    'Direct access to Tony',
  ];

  return (
    <section id="about-eivi" className="section-pad" style={{ background: '#F4F4F2' }}>
      <div className="container grid-2 about-eivi-split">
        <div>
          <h2 className="t-h2" style={{ margin: 0, color: '#000' }}>A focused next chapter, built on Limbo</h2>
        </div>
        <div>
          <p className="t-body" style={{ color: '#000', margin: 0 }}>Eivi builds on the Limbo project, and will advance the science of metabolism even further. Unlike its forerunner, Eivi will focus only on Ireland. All advice will be tailored to the Irish audience, and members can join online sessions personally hosted by Tony Martin.

          </p>
          <ul style={{
            listStyle: 'none', padding: 0, margin: 'clamp(32px, 5vw, 48px) 0 0',
            display: 'flex', flexDirection: 'column', gap: 'clamp(4px, 0.8vw, 8px)',
          }}>
            {features.map((label) => (
              <li key={label} className="t-h4" style={{ margin: 0, color: '#1BBBBB', lineHeight: 1.2 }}>
                {label}
              </li>
            ))}
          </ul>
        </div>
      </div>
    </section>);

}
window.AboutEivi = AboutEivi;