        :root {
            --beige: #f5f0e8;
            --vert: #4a6655;
            --gris: #555;
            --clair: #f8f6f2;
        }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body {
            font-family: 'Segoe UI', system-ui, sans-serif;
            line-height: 1.7;
            color: var(--gris);
            background-color: var(--clair);
        }
         header {
            background: rgba(255,255,255,0.97);
            position: fixed;
            width: 100%;
            z-index: 100;
            box-shadow: 0 2px 8px rgba(0,0,0,0.06);
        }
        nav {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0.5rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.35rem;
            font-weight: 600;
            color: var(--vert);
            letter-spacing: -0.02em;
        }
        .menu {
            display: flex;
            gap: 1.8rem;
        }
        .menu a {
            text-decoration: none;
            color: var(--gris);
            font-size: 0.95rem;
            font-weight: 500;
            letter-spacing: 0.3px;
            transition: color 0.3s ease;
        }
        .menu a:hover {
            color: var(--vert);
        }

        /* Version mobile */
        @media (max-width: 768px) {
            .menu {
                gap: 1.2rem;
            }
            .menu a {
                font-size: 0.9rem;
            }
            .logo {
                font-size: 1.25rem;
            }
        }

        .hero {
            /**height: 100vh; **/
            min-height: 400px;
            display: flex;
            align-items: center;
            color: black;
            text-align: center;
        }
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 2rem;
        }
        .hero h1 {
            font-size: 3.2rem;
            margin-bottom: 1rem;
        }
        .hero p {
            font-size: 1.4rem;
            margin-bottom: 2rem;
        }
        .btn {
            display: inline-block;
            background: var(--vert);
            color: white;
            padding: 14px 32px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
        }
        .btn:hover {
            background: #3a5244;
            transform: translateY(-3px);
        }

        section {
            padding: 50px 5%;
            max-width: 1100px;
            margin: 0 auto;
        }
        h2 {
            font-size: 2.4rem;
            color: var(--vert);
            text-align: center;
            margin-bottom: 2.5rem;
        }
        .apropos, .approche {
            background: white;
        }
        .texte {
            font-size: 1.15rem;
            max-width: 800px;
            margin: 0 auto;
        }
        .texte p {
            margin-bottom: 1.5rem;
        }

        .contact-info {
            max-width: 720px;
            margin: 2.5rem auto;
            text-align: center;
        }
        
        .adresse {
            font-size: 1.25rem;
            line-height: 1.45;
            margin-bottom: 2rem;
        }
        
        .contact-main {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 12px 20px;
            font-size: 1.22rem;
            color: var(--gris);
            margin: 1.8rem 0;
        }
        
        .contact-legal {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 12px 18px;
            font-size: 1rem;
            color: #666;
            margin-top: 1.5rem;
        }
        
        .separator {
            color: #999;
            font-weight: normal;
        }
        
        /* Styles des liens */
        .contact-info a {
            color: var(--vert);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .contact-info a:hover {
            color: #3a5244;
            text-decoration: underline;
            text-underline-offset: 4px;
        }
        
        .contact-link {
            font-weight: 500;
        }
        
        
        /* Style du bouton (légère harmonisation) */
        .btn {
            display: inline-block;
            background: var(--vert);
            color: white;
            padding: 14px 32px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .btn:hover {
            background: #3a5244;
            transform: translateY(-3px);
            box-shadow: 0 4px 12px rgba(74, 102, 85, 0.25);
        }
        
        .contact-main {
            font-size: 1.25rem;
            margin: 1.8rem 0;
            color: var(--gris);
        }
        
        .contact-legal {
            font-size: 1rem;
            color: #666;
            margin-top: 1.5rem;
        }
        
        .contact-main a:hover,
        .contact-legal a:hover {
            text-decoration: underline;
        }

        footer {
            background: #333;
            color: #ddd;
            text-align: center;
            padding: 2rem;
            font-size: 0.9rem;
        }

        @media (max-width: 768px) {
            .hero h1 { font-size: 2.4rem; }
            .menu a { margin-left: 1rem; font-size: 0.95rem; }
            .contact-main,
            .contact-legal {
                flex-direction: column;
                gap: 10px;
            }
            
            .separator {
                display: none;   /* On cache le | en mobile */
            }
            
            .adresse {
                font-size: 1.18rem;
            }
            
            .contact-main {
                font-size: 1.18rem;
            }
        }