:root{
  --green:#5d7c2e;
  --accent:#8aa33b;
  --muted:#6b6b6b;
  --bg:#fbfbfb;
  --max-width:1100px;
}

*{box-sizing:border-box}
body{
  font-family: "Nunito", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  color:#222;
  margin:0;
  background:var(--bg);
  line-height:1.5;
}

.site-header{
  background:white;
  padding:18px 12px;
  text-align:center;
  box-shadow:0 2px 6px rgba(0,0,0,0.04);
}
.title{
  font-family: "Montserrat", sans-serif;
  font-weight:800;
  letter-spacing:2px;
  margin:0;
  color:var(--green);
  font-size:2.4rem;
  text-transform:uppercase;
}

.container{
  max-width:var(--max-width);
  margin:24px auto;
  padding:0 18px 60px;
}

/* HERO */
.hero{
  position:relative;
  margin-bottom:18px;
}
.hero-img{
  width:100%;
  height:auto;
  display:block;
  border-radius:14px;
  box-shadow:0 12px 30px rgba(0,0,0,0.12);
  border:6px solid #fff;
}

/* crest / page 2 image small in corner */
.crest{
  position:absolute;
  right:18px;
  top:-22px;
  width:92px;
  height:auto;
  border-radius:10px;
  box-shadow:0 6px 18px rgba(0,0,0,0.12);
  background:linear-gradient(180deg,#fff0,#fff);
}

/* Intro */
.intro{
  background:white;
  margin-top:18px;
  padding:20px;
  border-radius:8px;
  box-shadow:0 6px 20px rgba(0,0,0,0.04);
}
.caption.small{
  font-size:0.88rem;
  color:var(--muted);
  margin:0 0 10px 0;
}
.intro h2{
  color:var(--green);
  margin:6px 0 10px;
  font-family:"Montserrat",sans-serif;
}
.motto{
  font-family:"Montserrat",sans-serif;
  color:var(--accent);
  font-size:1.35rem;
  text-align:center;
  margin:12px 0;
  font-weight:700;
}
.lead{font-weight:600;color:#333}

/* Columns */
.columns{
  display:flex;
  gap:18px;
  margin-top:18px;
  align-items:flex-start;
}
.col{
  background:white;
  padding:16px;
  border-radius:8px;
  box-shadow:0 6px 18px rgba(0,0,0,0.04);
}
.main-col{flex:2}
.side-col{flex:1}

.main-col h4{
  margin-top:0;
  color:var(--green);
  font-family:"Montserrat",sans-serif;
}
.main-col h5{
  margin-bottom:6px;
  margin-top:12px;
  color:var(--green);
  font-size:1rem;
}
.main-col ul{padding-left:1.05rem;color:#222}

/* Candidate block */
.candidate{
  display:flex;
  gap:10px;
  align-items:center;
  margin-bottom:8px;
}
.candidate-pic{
  width:64px;
  height:64px;
  object-fit:cover;
  border-radius:8px;
  background:#eee;
  border:2px solid #fff;
}
.muted{color:var(--muted);font-size:0.9rem}

/* participative box */
.participative h5{color:var(--green);margin-bottom:6px}
.participative h6{margin-top:12px;margin-bottom:6px}
.contact p{margin:6px 0}

/* legal */
.legal{margin-top:14px;text-align:center}
.smallprint{font-size:0.82rem;color:var(--muted)}

/* Footer */
.site-footer{
  text-align:center;
  color:#666;
  padding:22px 10px;
  font-size:0.9rem;
}

/* Responsive */
@media (max-width:900px){
  .columns{flex-direction:column}
  .crest{right:12px; top:-12px; width:76px}
  .title{font-size:1.9rem}
}
@media (max-width:420px){
  .title{font-size:1.5rem}
  .motto{font-size:1.05rem}
}

/* Petites icônes image fournies */
.icon-img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: inline-block;
}