:root {
  --bg: #f8fafc;
  --text: #1e293b;
  --muted: #64748b;
  --primary: #0ea5e9;
  --primary-light: #38bdf8;
  --secondary: #22c55e;
  --danger: #ef4444;
  --card: #ffffff;
  --border: #e2e8f0;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, "Helvetica Neue", Arial;
  background: var(--bg);
  color: var(--text);
}

/* Container centré */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}
.container.narrow {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Barre de navigation */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--text);
  padding: 12px 24px;
}
.navbar nav {
  display: flex;
  gap: 24px;
}
.navbar nav a {
  color: white;
  font-weight: 600;
  text-decoration: none;
}
.navbar nav a:hover {
  color: var(--primary-light);
}
.logo {
  height: 40px;
  border-radius: 8px;
}

/* Section hero */
.hero {
  background: linear-gradient(to right, var(--primary-light), var(--primary));
  color: white;
  padding: 80px 24px;
  text-align: center;
}
.hero .lead {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 16px auto;
}
.cta-group {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease;
}
.btn-primary {
  background: white;
  color: var(--primary);
}
.btn-primary:hover {
  background: #f0f9ff;
}
.btn-secondary {
  background: var(--secondary);
  color: white;
}
.btn-secondary:hover {
  background: #16a34a;
}
.btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
}
.btn-danger {
  background: var(--danger);
  color: white;
}

/* Section fonctionnement */
.how-it-works {
  padding: 48px 0;
}
.how-it-works h2 {
  text-align: center;
  margin-bottom: 32px;
}

/* Section enfants */
.children-list {
  /*padding: 48px 0;*/
  background-color: #E3F2FD; /* Bleu pastel ONG */
  padding: 60px 20px;
  border-radius: 12px;
}
.children-list h2 {
  text-align: center;
  margin-bottom: 32px;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 900px) {
  .grid-3 {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .grid-3, .grid-2 {
    grid-template-columns: 1fr;
  }
}

/* Cartes enfants */
.child-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.child-card img {
  width: 100%;
  height: 300px; /* augmente la hauteur pour voir le visage */
  object-fit: cover;
  object-position: top; /* centre sur le haut de l’image */
  border-radius: 8px;
}
.child-content {
  padding: 16px;
}
.child-content h3 {
  margin-top: 0;
}
.meta {
  color: var(--muted);
}
.wish {
  margin: 6px 0 12px;
}
.actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

/* Footer */
.footer {
  background: var(--text);
  color: white;
  padding: 32px 16px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.footer h4 {
  margin-bottom: 8px;
}
.small {
  color: var(--muted);
  font-size: 0.9rem;
}

/* Formulaires */
.form label {
  display: block;
  margin-bottom: 12px;
}
.form input, .form textarea {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: white;
  color: var(--text);
}
.form-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

/* Alertes */
.alert.error {
  background: #fee2e2;
  color: #991b1b;
  padding: 10px;
  border-radius: 8px;
}
.notice {
  background: #dcfce7;
  color: #166534;
  padding: 12px;
  border-radius: 8px;
}

.btn-formulaire {
  background: linear-gradient(to right, #22c55e, #16a34a);
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 10px;
  font-weight: bold;
  font-size: 1rem;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s ease;
}
.btn-formulaire:hover {
  background: linear-gradient(to right, #16a34a, #15803d);
}

.child-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  overflow: hidden;
  transition: transform 0.2s ease;
}
.child-card:hover {
  transform: translateY(-4px);
}

.child-card img {
  height: 180px;
  width: 100%;
  object-fit: cover;
}

.child-content {
  padding: 16px;
}

.child-content h3 {
  margin-top: 0;
  color: #1e293b;
}

.meta {
  color: #64748b;
  font-size: 0.95rem;
}

.wish {
  margin: 6px 0 12px;
  font-weight: 500;
  color: #1e293b;
}

.actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.btn-outline {
  border: 2px solid #0ea5e9;
  color: #0ea5e9;
  background: transparent;
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
}
.btn-outline:hover {
  background: #e0f2fe;
}

.btn-primary {
  background: #22c55e;
  color: white;
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
}
.btn-primary:hover {
  background: #16a34a;
}


.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #1e293b;
  padding: 12px 24px;
  color: white;
}

.nav-left .logo {
  height: 40px;
  border-radius: 8px;
}

.nav-center {
  flex: 1;
  text-align: center;
}

.slogan {
  font-size: 1rem;
  font-weight: 500;
  color: #facc15; /* jaune doré pour contraster sur fond bleu */
  margin: 0;
}

.nav-right nav {
  display: flex;
  gap: 24px;
}

.nav-right nav a {
  color: white;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-right nav a:hover {
  color: #38bdf8;
}





.footer {
  background-color: #002244;
  color: white;
  padding: 30px 20px;
}

.footer-columns {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-col {
  flex: 1;
  min-width: 220px;
}

.footer h3 {
  margin-bottom: 10px;
  font-size: 18px;
  color: #ffcc00;
}

.footer a {
  color: #ffcc00;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 768px) {
  .footer-columns {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-col {
    width: 100%;
    margin-bottom: 20px;
  }
}

.pagination {
  text-align: center;
  margin-top: 24px;
}
.pagination a {
  margin: 0 6px;
  padding: 8px 14px;
  background: #e2e8f0;
  color: #1e293b;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}
.pagination a.active {
  background: #22c55e;
  color: white;
}
#load-more {
  display: block;
  margin: 32px auto;
  padding: 12px 20px;
  background: #0ea5e9;
  color: white;
  border: none;
  border-radius: 10px;
  font-weight: bold;
  cursor: pointer;
}
#load-more:hover {
  background: #0284c7;
}


.home-preview {
  background-color: #E3F2FD; /* Bleu pastel ONG */
  padding: 60px 0;
}

.section-title {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 40px;
  color: var(--text);
}

.cta-center {
  text-align: center;
  margin-top: 40px;
}

.btn-formulaire {
  background: linear-gradient(to right, #22c55e, #16a34a);
  color: white;
  padding: 14px 28px;
  border: none;
  border-radius: 10px;
  font-weight: bold;
  font-size: 1rem;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s ease;
}

.btn-formulaire:hover {
  background: linear-gradient(to right, #16a34a, #15803d);
}


.profile-layout {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.profile-photo {
  flex: 1;
  min-width: 280px;
  max-width: 400px;
}

.profile-photo img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.profile-info {
  flex: 2;
  min-width: 300px;
}

.profile-info h2, .profile-info h3 {
  margin-top: 24px;
  color: #1e293b;
}

.profile-info p {
  font-size: 1rem;
  line-height: 1.6;
  color: #334155;
}

.story {
  background: #f1f5f9;
  padding: 16px;
  border-radius: 12px;
  margin-top: 12px;
  white-space: pre-line;
}

.actions {
  margin-top: 30px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

@media screen and (max-width: 768px) {
  .profile-layout {
    flex-direction: column;
  }
}


.profile-layout {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.profile-photo {
  flex: 1;
  min-width: 280px;
  max-width: 400px;
}

.profile-photo img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.profile-info {
  flex: 2;
  min-width: 300px;
}

.profile-info h1 {
  margin-bottom: 8px;
  font-size: 2rem;
  color: #1e293b;
}

.profile-info .location {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 24px;
}

.profile-info h2, .profile-info h3 {
  margin-top: 24px;
  color: #1e293b;
}

.profile-info p {
  font-size: 1rem;
  line-height: 1.6;
  color: #334155;
}

.story {
  background: #f1f5f9;
  padding: 16px;
  border-radius: 12px;
  margin-top: 12px;
  white-space: pre-line;
}

.actions {
  margin-top: 30px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

@media screen and (max-width: 768px) {
  .profile-layout {
    flex-direction: column;
  }
}

main.container {
  padding-bottom: 60px;
}


video, audio {
  margin-top: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}


video, audio {
  margin-top: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  max-width: 100%;
}

html {
  scroll-behavior: smooth;
}



.how-it-works {
  background-color: #E3F2FD; /* Bleu pastel ONG */
  padding: 50px 0 30px;
}

.section-title {
  text-align: center;
  font-size: 2.5em;
  font-weight: 700;
  color: #003366;
  margin-bottom: 40px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.step-card {
  background-color: #FFFDE7; /* ou #F9F9F9 ou #FFFDE7 */
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}

.step-icon {
  font-size: 3em;
  margin-bottom: 20px;
}

.step-card h3 {
  font-size: 1.4em;
  margin-bottom: 15px;
  color: #007BFF;
}

.step-card p {
  font-size: 1em;
  color: #333;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}



.sponsorship {
  background: #f1f5f9;
  padding: 60px 0;
}

.sponsorship .lead {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 40px;
  color: var(--text);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.step-card {
  background: white;
  border-radius: 16px;
  padding: 30px 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  text-align: center;
  transition: transform 0.3s ease;
}

.step-card:hover {
  transform: translateY(-6px);
}

.step-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.step-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--primary);
}

.step-card p {
  font-size: 1rem;
  color: var(--muted);
}

.trust {
  text-align: center;
  margin-top: 30px;
  font-size: 0.95rem;
  color: var(--muted);
}


.steps-section {
  background: #E3F2FD;
  padding: 60px 0;
}

.steps-section .section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
  color: var(--text);
}

.steps-section .lead {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 40px;
  color: var(--muted);
}

.steps-grid {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.step-card {
  background: white;
  border-radius: 16px;
  padding: 30px 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  text-align: center;
  width: 300px;
  transition: transform 0.3s ease;
}

.step-card:hover {
  transform: translateY(-6px);
}

.step-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.step-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--primary);
}

.step-card p {
  font-size: 1rem;
  color: var(--muted);
}


.cta-center {
  text-align: center;
  margin-top: 40px;
}

.btn-formulaire {
  background: linear-gradient(to right, #22c55e, #16a34a);
  color: white;
  padding: 14px 28px;
  border: none;
  border-radius: 10px;
  font-weight: bold;
  font-size: 1rem;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s ease;
}

.btn-formulaire:hover {
  background: linear-gradient(to right, #16a34a, #15803d);
}



/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #1e293b;
  padding: 12px 24px;
  color: white;
  position: relative;
}

.logo {
  font-weight: bold;
  font-size: 1.2rem;
  color: white;
}

.nav-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-weight: 600;
}

.nav-links li a:hover {
  color: #38bdf8;
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.burger span {
   display: block;
  width: 25px;
  height: 3px;
  background: white;
  border-radius: 2px;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .burger {
    display: flex;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background: #1e293b;
    position: absolute;
    top: 60px;
    right: 16px;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    z-index: 1000;
  }

  .nav-links.show {
    display: flex;
  }
}

@media screen and (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: #1e293b;
    position: absolute;
    top: 60px;
    right: 16px;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    z-index: 1000;
  }

  .nav-links.show {
    display: flex;
  }
}


.child-highlight {
  margin: 24px auto 12px;
  padding: 20px;
  background: #f0f9ff;
  border-left: 6px solid #0ea5e9;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.child-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.child-info h2 {
  font-size: 1.5rem;
  color: #0f172a;
  margin-bottom: 10px;
}

.child-info .child-name {
  color: #0ea5e9;
  font-weight: bold;
}

.child-info p {
  font-size: 1rem;
  color: #334155;
  margin: 6px 0;
}

.child-info .gratitude {
  font-size: 1.1rem;
  font-weight: 500;
  color: #16a34a;
  margin-top: 12px;
}


.child-highlight {
  margin: 24px auto 12px;
  padding: 20px;
  background: #f0f9ff;
  border-left: 6px solid #0ea5e9;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  text-align: center;
}

.child-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.child-info h2 {
  font-size: 1.5rem;
  color: #0f172a;
  margin-bottom: 6px;
}

.child-info .child-name {
  color: #0ea5e9;
  font-weight: bold;
}

.child-info p {
  font-size: 1rem;
  color: #334155;
  margin: 4px 0;
}

.child-info .gratitude {
  font-size: 1.1rem;
  font-weight: 500;
  color: #16a34a;
  margin-top: 8px;
}

.logo-text {
  font-size: 1.4rem;
  font-weight: bold;
  color: white;
  text-decoration: none;
}

.logo-text:hover {
  color: #38bdf8;
}

.transparency-banner {
  background: #e0f2fe;
  color: #0c4a6e;
  text-align: center;
  padding: 12px 20px;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 8px;
  margin: 24px auto;
  max-width: 800px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}



/* Menu de navigation */
.navbar {
  background-color: #0f172a; /* même couleur que le footer */
  color: white;
}

/* Liens du menu */
.nav-links li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

/* Bouton burger */
.burger span {
  background-color: white;
}

/* Footer */
.footer {
  background-color: #0f172a;
  color: white;
  padding: 24px 16px;
}

.footer h4,
.footer p {
  color: white;
}


.footer {
  background-color: #0f172a;
  color: white;
  padding: 32px 16px;
  font-size: 0.95rem;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.footer-grid > div {
  flex: 1;
  min-width: 200px;
}

.footer h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: white;
}

.footer p,
.footer a {
  color: white;
  text-decoration: none;
  line-height: 1.5;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 6px;
}

.footer-bottom {
  text-align: center;
  margin-top: 24px;
  font-size: 0.85rem;
  color: white;
}

/* Réseaux sociaux */
.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 8px;
  justify-content: flex-start;
}

.social-icons img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
  transition: transform 0.2s ease;
}

.social-icons a:hover img {
  transform: scale(1.1);
}

/* Mobile */
@media (max-width: 768px) {
  .footer-grid {
    flex-direction: column;
    text-align: center;
  }

  .footer-grid > div {
    margin-bottom: 24px;
  }

  .footer-links li a {
    display: inline-block;
    margin: 4px 0;
  }

  .social-icons {
    justify-content: center;
  }
}

/* Affiché uniquement sur PC */
.desktop-only {
  display: block;
}

/* Masqué sur mobile */
@media (max-width: 768px) {
  .desktop-only {
    display: none;
  }
}

.message-impact {
  color: #facc15; /* jaune doré */
  font-weight: 600;
  font-size: 1.2rem;
  text-align: center;
  margin-top: 12px;
}

/* ✅ SECTION CARTES WHY */
.why-cards {
  background-color: #E3F2FD; /* Bleu pastel ONG */
  padding: 60px 0;
}

.why-cards .section-title {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 40px;
  color: #333;
  font-weight: 700;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.why-card {
  background: #fff;
  padding: 30px 25px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.10);
}

.why-icon {
  font-size: 2.8rem;
  margin-bottom: 15px;
}

.why-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: #222;
  font-weight: 600;
}

.why-card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

/* ✅ TITRES */
.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 25px;
  color: #333;
  font-weight: 700;
}

.section-subtitle {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 30px;
  color: #555;
  font-size: 1.1rem;
}

/* ✅ TALENTS */
.talents-grid-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
}

.talent-card-item {
  background: #ffffff;
  padding: 18px;
  border-radius: 12px;
  text-align: center;
  font-size: 1.1rem;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}

.talent-card-item:hover {
  background: #dceeff;
  transform: translateY(-4px);
}

.talent-note {
  text-align: center;
  margin-top: 20px;
  color: #555;
}

/* ✅ IMPACT */
.impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.impact-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  transition: 0.3s ease;
}

.impact-card:hover {
  transform: translateY(-5px);
}

/* ✅ TRANSPARENCE */
.transparency-box {
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  max-width: 800px;
  margin: 0 auto;
}

/* ✅ CONCLUSION */
.conclusion-block {
  padding: 40px 0;
  text-align: center;
}

.conclusion-text {
  font-size: 1.2rem;
  color: #444;
  max-width: 700px;
  margin: 0 auto;
}

.conclusion-quote {
  margin-top: 15px;
  font-size: 1.4rem;
  font-weight: bold;
  color: #222;
}

/* Fond bleu pastel pour talents */
.talents-cards {
  background-color: #E3F2FD;
  padding: 60px 0;
}

/* Fond bleu pastel pour impact */
.impact-cards {
  background-color: #E3F2FD;
  padding: 60px 0;
}

/* Fond bleu pastel pour transparence */
.transparency-card {
  background-color: #E3F2FD;
  padding: 60px 0;
}

/* Fond bleu pastel pour conclusion */
.conclusion-block {
  background-color: #E3F2FD;
  padding: 40px 0;
}

.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 32px;
  line-height: 60px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  z-index: 999;
}
.whatsapp-float:hover {
  background-color: #1ebe5d;
}