<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
        xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9
        http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd">

    <!-- Page d'accueil -->
    <url>
        <loc>https://www.chbusinessconsult.com/</loc>
        <lastmod>2025-01-20</lastmod>
        <changefreq>weekly</changefreq>
        <priority>1.0</priority>
    </url>

    <!-- Page À propos -->
    <url>
        <loc>https://www.chbusinessconsult.com/about.html</loc>
        <lastmod>2025-01-20</lastmod>
        <changefreq>monthly</changefreq>
        <priority>0.9</priority>
    </url>

    <!-- Page Services -->
    <url>
        <loc>https://www.chbusinessconsult.com/services.html</loc>
        <lastmod>2025-01-20</lastmod>
        <changefreq>monthly</changefreq>
        <priority>0.9</priority>
    </url>

    <!-- Services individuels -->
    <url>
        <loc>https://www.chbusinessconsult.com/services.html#dev-international</loc>
        <lastmod>2025-01-20</lastmod>
        <changefreq>monthly</changefreq>
        <priority>0.8</priority>
    </url>

    <url>
        <loc>https://www.chbusinessconsult.com/services.html#sourcing</loc>
        <lastmod>2025-01-20</lastmod>
        <changefreq>monthly</changefreq>
        <priority>0.8</priority>
    </url>

    <url>
        <loc>https://www.chbusinessconsult.com/services.html#design-thinking</loc>
        <lastmod>2025-01-20</lastmod>
        <changefreq>monthly</changefreq>
        <priority>0.8</priority>
    </url>

    <url>
        <loc>https://www.chbusinessconsult.com/services.html#business-intelligence</loc>
        <lastmod>2025-01-20</lastmod>
        <changefreq>monthly</changefreq>
        <priority>0.8</priority>
    </url>

    <url>
        <loc>https://www.chbusinessconsult.com/services.html#formation</loc>
        <lastmod>2025-01-20</lastmod>
        <changefreq>monthly</changefreq>
        <priority>0.8</priority>
    </url>

    <url>
        <loc>https://www.chbusinessconsult.com/services.html#accompagnement</loc>
        <lastmod>2025-01-20</lastmod>
        <changefreq>monthly</changefreq>
        <priority>0.8</priority>
    </url>

    <!-- Page Voyages d'Éveil -->
    <url>
        <loc>https://www.chbusinessconsult.com/voyages.html</loc>
        <lastmod>2025-01-20</lastmod>
        <changefreq>monthly</changefreq>
        <priority>0.9</priority>
    </url>

    <!-- Page Engagements -->
    <url>
        <loc>https://www.chbusinessconsult.com/engagements.html</loc>
        <lastmod>2025-01-20</lastmod>
        <changefreq>monthly</changefreq>
        <priority>0.8</priority>
    </url>

    <!-- Page Contact -->
    <url>
        <loc>https://www.chbusinessconsult.com/contact.html</loc>
        <lastmod>2025-01-20</lastmod>
        <changefreq>monthly</changefreq>
        <priority>0.7</priority>
    </url>

</urlset>
```

**📍 Emplacement : À la racine du site web**
```
ch-consulting/
├── robots.txt
├── sitemap.xml         ← ICI
├── index.html
├── about.html
└── ...
```

---

## 📋 STRUCTURE FINALE COMPLÈTE DU PROJET
```
ch-consulting/
├── index.html                    ✅ Page d'accueil
├── about.html                    ✅ Page à propos
├── services.html                 ✅ Page services
├── voyages.html                  ✅ Page voyages d'éveil
├── engagements.html              ✅ Page engagements
├── contact.html                  ✅ Page contact
├── robots.txt                    ✅ Fichier robots
├── sitemap.xml                   ✅ Sitemap XML
├── css/
│   ├── main.css                  ✅ Styles principaux
│   ├── animations.css            ✅ Animations
│   └── responsive.css            ✅ Responsive design
├── js/
│   ├── main.js                   ✅ JavaScript principal
│   ├── animations.js             ✅ Animations GSAP
│   ├── 3d-scene.js              ✅ Scène Three.js
│   ├── smooth-scroll.js         ✅ Locomotive Scroll
│   └── page-transitions.js      ✅ Transitions de pages
└── assets/
    ├── images/                   (vos images)
    └── videos/                   (vos vidéos)