body {
  margin: 0;
  font-family: 'Raleway', sans-serif;
  background: #f9f9f9;
  color: #73b67f;
}

/* Sidebar */
.sidebar {
  position: fixed;
  top: 0;
  left: -250px;
  width: 250px;
  height: 100%;
  background: #ffffff;
  box-shadow: 2px 0 10px rgba(248, 247, 247, 0.1)
  transition: left 0.3s;
  padding-top: 60px;
  z-index: 999;
}

.sidebar.active { left: 0; }
.sidebar ul { list-style: none; padding: 0; }
.sidebar ul li { margin: 15px 0; }
.sidebar ul li a {
  display: block;
  padding: 12px 20px;
  border-radius: 25px;
  color: #526158;
  font-weight: 500;
  transition: all 0.3s;
}
.sidebar ul li a:hover, .sidebar ul li a.active {
  background: #4c946a; /* violet clair */
  transform: translateX(5px);
}

/* Hamburger */
.hamburger {
  position: fixed;
  top: 20px;
  left: 20px;
  width: 45px;
  height: 45px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  background: white;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  cursor: pointer;
  z-index: 1000;
  padding: 10px;
}
.hamburger span {
  width: 25px;
  height: 3px;
  background: #4c946a;
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Hero */
.hero {
  position: relative;
  height: 50vh; /* ajuste si besoin */
  background: url('fonnnd.png') center/contain no-repeat; /* ← ton image */
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero .overlay {
  background: rgba(0,0,0,0.5); /* tu peux ajuster l'opacité ou la couleur */
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  color: white;
}

.hero h1 { font-size: 2.5rem; margin-bottom: 0.5rem; }
.hero p { font-size: 1.1rem; margin-bottom: 1rem; }
.btn {
  background: #4c946a; /* violet foncé */
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  color: white;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}
.btn:hover {
  background: #596756; /* violet clair au hover */
  transform: translateY(-2px);
}

/* Services */
.services { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; margin: 2rem 0; }
.service-card { background: white; padding: 1.5rem; border-radius: 15px; box-shadow: 0 3px 10px rgba(0,0,0,0.05); width: 280px; text-align: center; }
.service-card h2 { margin-bottom: 1rem; color: #436336; }

/* Footer */
footer {
  text-align: center;
  padding: 1.9rem;
  background: #4c946a; 
  color: white;
  border-top: 2px solid #839683; /* violet clair */
  margin-top: 80px;
}

/* Responsive */
@media(max-width:768px) {
  .services { flex-direction: column; align-items: center; }
}

.top-logo {
  position: fixed;
  top: 20px;
  right: 10px;
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.9);
  padding: 10px 20px;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  z-index: 1002;
}

.top-logo img {
  height: 50px;
  width: auto;
  margin-right: 15px;
  border-radius: 50%; /* optionnel, pour arrondir le logo */
}

.top-logo .logo-text h3 {
  margin: 0;
  font-size: 1.1em;
  color: #2d5734;
  font-weight: 600;
}

.top-logo .logo-text .email {
  font-size: 0.8em;
  color: #6f8177;
  text-decoration: none;
}

.top-logo .logo-text .email:hover {
  color: #40523c;
}

.service-card {
  background-color: #f5f5f5; /* couleur de fond */
  border-radius: 10px;        /* coins arrondis */
  padding: 20px;              /* espace intérieur */
  margin: 15px;               /* espace entre les cartes */
  box-shadow: 0 4px 6px rgba(59, 104, 55, 0.1); /* ombre légère */
  line-height: 1.6;           /* espace entre les lignes */
  font-family: Arial, sans-serif;
}

.service-card h2 {
  text-align: center;          /* titre centré */
  margin-bottom: 15px;         /* espace sous le titre */
  font-size: 1.5em;
  color: #436342;
}

.service-card p {
  text-align: justify;         /* texte justifié pour lecture agréable */
  margin-bottom: 10px;         /* espace entre les paragraphes */
}

.service-card {
  background-color: #f5f5f5;
  border-radius: 10px;
  padding: 20px;
  margin: 15px 0;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

/* Titre centré */
.service-card h2 {
  text-align: center;
  margin-bottom: 10px;
  color: #333;
}

/* Texte justifié */
.service-card p {
  text-align: justify;
  margin-bottom: 10px;
}

.services {
  display: flex;
  justify-content: center; /* centre horizontalement la carte */
  margin: 30px 0;          /* un peu d'espace autour */
}

.service-card.two-columns {
  display: flex;
  gap: 20px;
  max-width: 900px;        /* largeur max de la carte */
  width: 100%;             /* prend toute la largeur disponible jusqu'à 900px */
  padding: 20px;
  background-color: #f5f5f5;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  align-items: stretch;    /* fait que les colonnes aient la même hauteur */
}

.service-card.two-columns .column {
  flex: 1;
  min-width: 250px;
  display: flex;
  flex-direction: column;
}

.service-card h2 {
  text-align: center;
  margin-bottom: 10px;
  color: #333;
}

.service-card p {
  text-align: justify;
  margin-bottom: 10px;
}

.service-card form {
  display: flex;
  flex-direction: column; /* empile les champs */
  gap: 15px; /* espace entre les champs */
}

.service-card label {
  font-weight: bold;
  margin-bottom: 5px;
}

.service-card input,
.service-card textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1em;
  width: 100%;
  box-sizing: border-box;
}

.service-card button {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  background-color: #333; /* tu peux garder la couleur actuelle si tu veux */
  color: white;
  font-size: 1em;
  cursor: pointer;
  align-self: flex-start; /* le bouton commence à gauche */
  transition: background-color 0.3s;
}

.service-card button:hover {
  background-color: #555; /* léger effet au survol */
}

/* ===== PAGE RGPD ===== */
.rgpd-container {
  max-width: 900px;
  margin: 3rem auto;
  background: white;
  padding: 3rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  line-height: 1.8;
}

.rgpd-container h1 {
  text-align: center;
  margin-bottom: 2.5rem;
  color: #2f5d3a;
}

.rgpd-container h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: #3f7a4a;
}

.rgpd-container h3 {
  margin-top: 1.5rem;
  color: #4e8a59;
}

.rgpd-container p {
  margin-bottom: 1rem;
  color: #444;
}

.rgpd-container a {
  color: #4e8a59;
  font-weight: 500;
}

/* ===== BANDEAU COOKIES – VERSION ÉLÉGANTE ===== */
.cookie-banner {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 900px;
  width: calc(100% - 40px);
  background: rgba(255, 255, 255, 0.96);
  border-radius: 24px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
  padding: 2.2rem 2.5rem;
  z-index: 3000;
  display: none;
}

.cookie-content {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  text-align: center;
}

.cookie-content p {
  margin: 0;
  font-size: 1rem;
  color: #2d5734;
  line-height: 1.7;
}

.cookie-content a {
  color: #4c946a;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.cookie-content a:hover {
  border-bottom: 1px solid #4c946a;
}

/* Boutons */
.cookie-actions {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.cookie-actions button {
  padding: 0.7rem 1.8rem;
  border-radius: 40px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  font-size: 0.95rem;
  transition: all 0.25s ease;
}

/* Accepter */
.cookie-accept {
  background: #4c946a;
  color: white;
}

.cookie-accept:hover {
  background: #3b7d59;
  transform: translateY(-1px);
}

/* Refuser */
.cookie-refuse {
  background: transparent;
  color: #4c946a;
  border: 2px solid #4c946a;
}

.cookie-refuse:hover {
  background: #e8f3ee;
}

/* ===== FIX HAMBURGER QUI CHEVAUCHE LE MENU ===== */

/* position normale */
.hamburger {
  transition: left 0.3s ease, background 0.3s ease;
}

/* quand le menu est ouvert */
.sidebar.active ~ .hamburger,
.hamburger.active {
  left: 270px; /* juste à droite de la sidebar (250px + marge) */
}
