* { margin: 0; padding: 0; box-sizing: border-box; }
body { 
    font-family: Arial, sans-serif; 
    line-height: 1.6; 
    color: #333; 
    background: linear-gradient(135deg, #E3F2FD 0%, #C8E6C9 50%, #FFF8E1 100%);
}

.navbar { 
    display: flex; justify-content: space-between; align-items: center; 
    background: #2E7D32; color: white; padding: 1rem 2rem; position: sticky; top: 0; 
}
.logo { font-size: 1.8rem; font-weight: bold; }
.nav-links { display: flex; list-style: none; gap: 2rem; }
.nav-links a { 
    color: white; text-decoration: none; padding: 0.5rem 1rem; 
    border-radius: 5px; transition: background 0.3s; 
}
.nav-links a:hover { background: #FF9800; }
.burger { display: none; font-size: 2rem; cursor: pointer; }

.hero { padding: 4rem 2rem; max-width: 1200px; margin: auto; }
.container { display: flex; gap: 3rem; align-items: center; }
.hero-left img { 
    border-radius: 20px; box-shadow: 0 15px 40px rgba(0,0,0,0.3); 
    width: auto; max-width: 300px; height: auto; max-height: 400px; 
    object-fit: cover;
}
.hero-right h1 { font-size: 3rem; color: #2E7D32; margin-bottom: 1rem; }
.hero-right p { font-size: 1.2rem; margin-bottom: 1rem; }

.content-section { 
    max-width: 1200px; margin: 3rem auto; padding: 0 2rem; 
}
.content-section h2 { 
    font-size: 2rem; color: #2E7D32; margin: 2rem 0 1rem 0; text-align: center; 
}
.content-section p { 
    font-size: 1.1rem; margin-bottom: 1.5rem; text-align: justify; 
}

/* VOTRE CODE INTÉGRÉ POUR L'IMAGE À PROPOS */
.conteneur-image {
  text-align: center;                    /* Centre l'image horizontalement */
  margin: 20px 0;                        /* Espacement autour du bloc */
}

.conteneur-image img {
  max-width: 100%;                       /* Responsive */
  border: 3px solid #ddd;                /* Cadre simple clair */
  border-radius: 12px;                   /* Coins légèrement arrondis */
  padding: 8px;                          /* Un peu d'espace interne */
  box-shadow: 0 4px 12px rgba(0,0,0,0.1); /* Ombre légère pour un effet "joli" */
}

.gammes { padding: 4rem 2rem; text-align: center; }
.gammes h2 { font-size: 2.5rem; color: #2E7D32; margin-bottom: 3rem; }
.gammes-grid { 
    display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    gap: 2rem; max-width: 1000px; margin: auto; list-style: none;
}
.gammes-grid li { 
    background: white; padding: 2rem; border-radius: 20px; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.1); transition: transform 0.3s; 
}
.gammes-grid li:hover { transform: translateY(-10px); }
.gammes-grid img { border-radius: 50%; margin-bottom: 1rem; width: 80px; height: 80px; }

h1, h2 { text-align: center; color: #2E7D32; margin: 2rem 0; }
h1 { font-size: 2.5rem; }

.temoignages-grid { 
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 2rem; padding: 2rem; max-width: 1200px; margin: auto; 
}
.temoignage { 
    background: white; padding: 2rem; border-radius: 20px; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.1); 
}
.temoignage img { 
    border-radius: 50%; width: auto; max-width: 100px; height: auto; max-height: 100px; 
    float: left; margin: 0 1rem 1rem 0; object-fit: cover;
}
.temoignage h3 { color: #FF9800; margin-bottom: 0.5rem; font-size: 1.3rem; }
.temoignage .signature { font-style: italic; color: #666; margin-top: 1rem; font-weight: bold; }
.etoiles { color: #FF9800; font-size: 1.5rem; margin-bottom: 1rem; }
.clear { clear: both; }

table { 
    width: 90%; margin: 2rem auto; background: white; 
    border-radius: 15px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.1); 
    border-collapse: collapse; 
}
th { background: #4CAF50; color: white; padding: 1.5rem; }
td { padding: 1.5rem; border-bottom: 1px solid #eee; }

/* RESPONSIVE */
@media (max-width: 768px) {
    .nav-links { 
        position: fixed; top: 70px; left: -100%; width: 100%; 
        flex-direction: column; background: #2E7D32; padding: 2rem 0; transition: 0.3s; 
    }
    .nav-links.active { left: 0; }
    .burger { display: block; }
    .container { flex-direction: column; text-align: center; }
    .gammes-grid { grid-template-columns: 1fr; }
    .temoignages-grid { grid-template-columns: 1fr; }
    .temoignage img { float: none; display: block; margin: 0 auto 1rem auto; }
    .temoignage { text-align: center; }
    table { font-size: 0.9rem; width: 95%; }
}
