body {
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
    background: #f7f7f7;
    color: #252525;
}

.header {
    background: linear-gradient(180deg, #a5cf64 0%, #f7f7f7 80%);
    text-align: center;
    position: relative;
    padding: 30px 10px 10px 10px;
}

.blason {
    position: absolute;
    top: 25px;
    right: 30px;
    width: 80px;
}

.main-title {
    color: #18823a;
    font-size: 2.8rem;
    font-weight: bold;
    letter-spacing: 2px;
    margin: 0 0 10px 0;
    text-shadow: 1px 1px 2px #e0e0e0;
}

.team-section {
    background: #fff;
    border-radius: 0 0 18px 18px;
    max-width: 900px;
    margin: 0 auto 30px auto;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    padding: 30px 30px 15px 30px;
}

.equipe-img {
    width: 100%;
    max-height: 260px;
    object-fit: cover;
    border-radius: 18px;
    margin-bottom: 15px;
    border: 3px solid #a5cf64;
}

.team-list {
    font-size: 1rem;
    margin-bottom: 18px;
}

.slogan {
    background: #f4ffde;
    border-left: 7px solid #a5cf64;
    margin: 22px 0 17px 0;
    padding: 16px 25px;
    border-radius: 8px;
}

.slogan-main {
    color: #18823a;
    font-size: 1.6rem;
    font-weight: bold;
    display: block;
    margin-bottom: 7px;
}

.main-section {
    max-width: 900px;
    margin: 0 auto 30px auto;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    padding: 30px 30px 30px 30px;
}

.intro-section {
    display: flex;
    align-items: flex-start;
    gap: 28px;
    margin-bottom: 30px;
}

.intro-photo img {
    width: 120px;
    border-radius: 12px;
    border: 2px solid #a5cf64;
}

.intro-text {
    flex: 1;
    font-size: 1.1rem;
    color: #26370c;
}

.highlight {
    color: #18823a;
    font-weight: bold;
}

.signature {
    margin-top: 18px;
    color: #252525;
    font-size: 1rem;
}

.engagement-section h2 {
    color: #18823a;
    text-align: center;
    margin-bottom: 25px;
    font-size: 1.7rem;
    letter-spacing: 1px;
}

.pillars-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px 0;
}

.pillar-title {
    display: block;
    font-weight: bold;
    font-size: 1.1rem;
    margin: 18px 0 6px 0;
}

.green {
    color: #18823a;
}

.pillars-list ul {
    margin: 0 0 0 24px;
    padding: 0 0 10px 0;
    font-size: 1rem;
}

.participative-section h3 {
    color: #18823a;
    font-size: 1.15rem;
    margin-top: 25px;
}

.participative-section p {
    margin-top: 10px;
}

.footer {
    background: #a5cf64;
    padding: 25px 0 20px 0;
    text-align: center;
    border-top: 5px solid #18823a;
}

.contact-box {
    background: #fff;
    display: inline-block;
    padding: 18px 30px;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.07);
}

.contact-box strong {
    color: #18823a;
    font-size: 1.12rem;
}

.email-link, .site-link {
    color: #18823a;
    font-weight: bold;
    text-decoration: none;
}

.email-link:hover, .site-link:hover {
    text-decoration: underline;
}

.social-icons {
    margin-top: 10px;
}

.social-icons img {
    width: 38px;
    margin: 0 10px;
    vertical-align: middle;
}

/* Responsive */
@media (max-width: 700px) {
    .main-section, .team-section {
        padding: 18px 7px;
    }
    .intro-section {
        flex-direction: column;
        align-items: center;
    }
    .blason {
        position: static;
        display: block;
        margin: 0 auto 12px auto;
    }
}