function ServiceArea() {
  return (
    <section className="section" data-screen-label="Zone d'intervention">
      <div className="container" style={{ textAlign: 'center' }}>
        <span className="eyebrow">Zone d'intervention</span>
        <h2 style={{ marginTop: 10, marginBottom: 14 }}>Nous intervenons près de chez vous</h2>
        <p style={{ fontFamily: 'var(--font-body)', fontSize: 'var(--text-body-size)', color: 'var(--text-secondary)', maxWidth: 620, margin: '0 auto' }}>
          {window.PaoliData.zones.join(', ')} et alentours.
        </p>
      </div>
    </section>
  );
}
window.ServiceArea = ServiceArea;
