/* Général */
body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Conteneur général */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
.site-header {
    background: #0e5d36;
    padding: 1rem 0;
    color: white;
}

.site-header .logo a {
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
    text-decoration: none;
}




/* Sections communes */
section {
    padding: 4rem 0;
}




/* Projets */
.projets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.projet-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.projet-item h3 {
    margin-top: 1rem;
}

/* Témoignages */
.temoignages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.temoignage-item {
    background: #e6f2ea;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    font-style: italic;
}

/* Actualités */
.actualites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.actualite-item h3 {
    margin-top: 0;
}
