/* Styles de base */
body {
  font-family: 'Raleway', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #ffffff;
  color: #333;
  line-height: 1.6;
  font-size: 16px;
}

h1, h2, h3 {
  font-weight: 700;
  line-height: 1.3;
}

h2 {
  font-size: 28px;
}

h3 {
  font-size: 20px;
  color: #111;
}
.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.site-title,
.tagline {
  z-index: 1;
  color: white;
  text-align: center;
}

.site-title {
  font-size: 50px;
  font-weight: bold;
  margin-top: 60px;
}

.tagline {
  font-size: 20px;
  font-weight: bold;
  margin-top: 10px;
}

.top-right-buttons {
  position: absolute;
  top: 20px;
  right: 30px;
  display: flex;
  gap: 15px;
  z-index: 1;
}

.btn {
  background-color: white;
  color: #3ded97;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #3ded97;
  color: white;
}

/* ✅ Correction de l'alignement des sections */
.sections-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch; /* <<< AJOUTER ÇA pour forcer les .section à toutes la même hauteur */
  gap: 15px;
  padding: 20px;
  min-height: 200px;
  overflow: hidden;
}

/* ✨ Animation d’apparition en fondu */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ✅ Section carrée et bien centrée */
.section {
  width: 120px;
  height: 180px; /* Hauteur fixe pour tout aligner */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  margin: 15px;
  background: transparent !important;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.3s;
  box-shadow: none !important;
}

.section:hover {
  transform: scale(1.05);
}

.section img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
}

/* ✅ Titre lisible et bien placé */
.section h2 {
  font-size: 13px;
  margin: 8px 0 0 0;
  color: #333;
  text-align: center;
  line-height: 1.2;
  white-space: normal;
  height: 40px; /* Hauteur fixée pour que tous les titres occupent la même place */
  overflow: hidden; /* S'il dépasse, on coupe */
}

/* ✅ Correction des boutons en haut */
.header-top {
  position: relative;
  padding: 20px;
}

.top-right-buttons {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  gap: 10px;
}

.top-right-buttons .btn {
  background-color: rgba(255, 255, 255, 0.3);
  padding: 8px 12px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  color: white;
  transition: background 0.3s;
}

.top-right-buttons .btn:hover {
  background-color: rgba(255, 255, 255, 0.6);
}

/* ✅ Correction de la position du message d’annonce */
.status {
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.6);
  padding: 10px 20px;
  border-radius: 8px;
  color: white;
  font-size: 16px;
  font-weight: bold;
}

/* Liens de navigation */
.main-navigation {
  text-align: center;
  margin-top: 15px;
}

.main-navigation a {
  text-decoration: none;
  margin: 0 15px;
  font-weight: bold;
  color: white;
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 12px;
  border-radius: 5px;
  transition: background 0.3s;
}

.main-navigation a:hover {
  background: rgba(255, 255, 255, 0.4);
}

/* ✅ Espacement vertical harmonisé (optionnel mais conseillé) */
#newsletter,
#crowdfunding {
  margin-bottom: 20px;
}

.newsletter-and-links {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  padding: 40px 20px;
  gap: 40px;
}

.newsletter-left {
  flex: 1 1 50%;
  max-width: 600px;
}

.newsletter-right {
  flex: 1 1 40%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}

.newsletter-links {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}

@media (max-width: 768px) {
  .newsletter-right {
    align-items: center;
    text-align: center;
  }

  .newsletter-links {
    align-items: center;
    text-align: center;
  }

  section {
    margin-bottom: 60px;
    padding-bottom: 60px;
  }
}

.newsletter-right a {
  color: #333;
  font-weight: bold;
  text-decoration: none;
}

.newsletter-right a:hover {
  text-decoration: underline;
}

.newsletter-right h2 {
  margin-top: 20px;
  font-size: 18px;
}

#crowdfunding {
  margin-top: 30px;
}

#crowdfunding h2 {
  font-size: 20px;
  margin-bottom: 10px;
}

#crowdfunding .cta {
  color: #6b00b6;
  font-weight: bold;
  text-decoration: none;
}

#crowdfunding .cta:hover {
  text-decoration: underline;
}

.newsletter-right a[href="#preabonnements"] {
  margin-bottom: 20px; /* ⇦ espace avant "Soutenez Let's Go" */
}

/* 🎨 Style amélioré pour le bouton newsletter */
form button[type="submit"] {
  background-color: #3ded97;
  color: white;
  border: none;
  padding: 10px 18px;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

form button[type="submit"]:hover {
  background-color: #32c884;
  transform: scale(1.05);
}

/* 📱 Version mobile responsive */
@media (max-width: 768px) {
  .sections-container {
    justify-content: center;
  }

  .section {
    width: 100px;
    margin: 10px;
  }

  .section img {
    height: 100px;
  }

  .nav-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .newsletter-and-links {
    flex-direction: column;
    text-align: center;
  }

  .newsletter-right {
    text-align: center;
    align-items: center;
  }

/* ✅ Section Pourquoi Let's Go */
.pourquoi-section-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 60px 30px;
  background: linear-gradient(to right, #ffffff, #f4f4f4);
  gap: 50px;
}

.pourquoi-image img {
  max-width: 350px;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

.pourquoi-contenu {
  max-width: 600px;
  text-align: left;
}

.pourquoi-contenu h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.pourquoi-contenu p {
  font-size: 16px;
  line-height: 1.6;
}

.pourquoi-contenu ul {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.pourquoi-contenu li {
  font-size: 16px;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .pourquoi-section-flex {
  flex-direction: column;
  text-align: center;
  }
  
  .pourquoi-contenu {
    text-align: center;
  }
}

/* ✅ Styles pour la section "Comment ça marche ?" */
.marche-section {
  padding: 60px 20px;
  background: linear-gradient(to right, #ffffff, #f8f8f8);
  text-align: center;
}

.etapes-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
  padding-bottom: 30px;
}

.etape img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.etape h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.etape p {
  font-size: 14px;
  line-height: 1.4;
}

/* Version mobile */
@media (max-width: 768px) {
  .etapes-container {
    flex-direction: column;
    align-items: center;
  }

  .etape {
    width: 90%;
  }
}

/* ✅ Section Trouve des Activités */
.activites-section {
  padding: 40px 20px;
  background-color: #ffffff;
  text-align: center;
}

.etape img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.etape h3 {
  font-size: 18px;
  margin: 10px 0 5px;
}

.etape p {
  font-size: 14px;
  line-height: 1.5;
}

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

  .etape {
    width: 90%;
    max-width: 300px;
  }
}

/* ✅ Section Rencontre de Nouvelles Personnes */
.rencontre-section {
  padding: 60px 20px;
  background-color: #ffffff;
  text-align: center;
}

.rencontre-soustitre {
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 500;
  color: #666;
}

.rencontre-texte {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
}

  .rencontre-section h2,
  .rencontre-soustitre,
  .rencontre-texte {
    text-align: center;
  }
}

/* ✅ Section Crée ton propre événement */
.evenements-section {
  padding: 60px 20px;
  background-color: #ffffff;
  text-align: center;
}

.evenement-intro {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.etapes-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.etape img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.etape h3 {
  font-size: 18px;
  margin: 10px 0 5px;
}

.etape p {
  font-size: 14px;
  line-height: 1.5;
}

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

  .etape {
    width: 90%;
    max-width: 300px;
  }
}

.abonnements-section {
  padding: 50px 20px;
  background-color: #ffffff;
  text-align: center;
}

.abonnement-intro {
  font-size: 16px;
  margin-bottom: 30px;
}

.table-container {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  display: block;
  margin-bottom: 30px;
}

.tableau-abonnement {
  margin: 30px auto;
  border-collapse: collapse;
  width: 100%;
  max-width: 800px;
  font-size: 15px;
  text-align: center;
}

.tableau-abonnement table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 auto;
}

.tableau-abonnement th,
.tableau-abonnement td {
  border: 1px solid #ccc;
  padding: 12px 15px;
  text-align: center;
}

.tableau-abonnement th {
  background-color: #3ded97;
  color: white;
}

.tableau-abonnement th,
.tableau-abonnement td {
  padding: 12px 15px;
  border: 1px solid #ccc;
  text-align: center;
}

.tableau-abonnement th {
  background-color: #3ded97;
  color: white;
}

.cta-abonnements {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.btn-principal {
  background-color: #3ded97;
  color: white;
  padding: 12px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  border: none;
  display: inline-block;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-principal:hover {
  background-color: #31c88b;
  box-shadow: 0 0 12px rgba(61, 237, 151, 0.5);
  transform: scale(1.03);
}

.pros-section {

  padding: 40px 20px;
  background-color: #ffffff;
  text-align: center;
}

.pros-section .pros-soustitre {
  font-size: 18px;
  font-weight: bold;
  color: #3ded97;
  margin-bottom: 10px;
}

.pros-section .pros-texte {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.tableaux-pros {
  margin-top: 40px;
}

.tableaux-pros table {
  margin: 0 auto;
  border-collapse: collapse;
  width: 100%;
  max-width: 700px;
}

.tableaux-pros th,
.tableaux-pros td {
  border: 1px solid #ccc;
  padding: 10px;
  text-align: center;
}

.tableaux-pros th {
  background-color: #3ded97;
  color: white;
}

@media (max-width: 768px) {
  .etapes-container {
    flex-direction: column;
    align-items: center;
  }

  .etape {
    width: 90%;
    max-width: 300px;
  }

  .tableaux-pros table {
    font-size: 14px;
  }
}

/* ✅ Section Soutenir Let's Go */
.soutien-section {
  padding: 40px 20px;
  background-color: #ffffff;
  text-align: center;
}

.soutien-texte {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.avantages-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
}

.avantage {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 12px 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  font-size: 15px;
}

.palier-box {
  background-color: #ffffff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-align: left;
  max-width: 800px;
  margin: 0 auto 30px;
}

.palier-box h3 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 20px;
}

.palier-box ul {
  list-style: none;
  padding: 0;
}

.palier-box li {
  font-size: 14px;
  margin-bottom: 10px;
}

.soutien-paliers {
  margin-bottom: 10px;
}

.cta-btn {
  display: inline-block;
  padding: 12px 20px;
  background-color: #3ded97;
  color: white;
  font-weight: bold;
  border-radius: 25px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.cta-btn:hover {
  background-color: #32c884;
}

.compteur-soutiens {
  margin-top: 20px;
  font-size: 15px;
  font-weight: bold;
}

.soutien-alt {
  margin-top: 25px;
  text-align: center;
  font-size: 15px;
  color: #333;
}

.soutien-alt a {
  display: inline-block;
  margin-top: 8px;
  color: #b600a4;
  font-weight: bold;
  text-decoration: none;
}

.soutien-alt a:hover {
  text-decoration: underline;
}

/* ✅ Styles supplémentaires pour les nouveaux tableaux abonnements */

.abonnements-section h3 {
  font-size: 20px;
  margin-top: 30px;
  color: #333;
}

/* ✅ Tableau des packs messages */
.tableau-messages {
  margin: 30px auto;
  border-collapse: collapse;
  width: 100%;
  max-width: 500px;
  font-size: 15px;
}

.tableau-messages th,
.tableau-messages td {
  border: 1px solid #ccc;
  padding: 10px 14px;
  text-align: center;
}

.tableau-messages th {
  background-color: #3ded97;
  color: white;
}

/* ✅ Petits ajustements responsive */
@media (max-width: 768px) {
  .tableau-abonnement table,
  .tableaux-pros table,
  .tableau-messages {
    font-size: 13px;
  }

  .tableaux-pros th,
  .tableaux-pros td,
  .tableau-messages th,
  .tableau-messages td {
    padding: 8px;
  }
}

/* ✅ Harmonisation Pros - Tableaux */
.pros-section h3 {
  font-size: 20px;
  margin-top: 30px;
  color: #333;
}

.tableau-abonnement {
  margin: 30px auto;
  border-collapse: collapse;
  width: 100%;
  max-width: 800px;
  font-size: 15px;
  text-align: center;
}

.tableau-abonnement table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 auto;
}

.tableau-abonnement th,
.tableau-abonnement td {
  border: 1px solid #ccc;
  padding: 12px 15px;
  text-align: center;
}

.tableau-abonnement th {
  background-color: #3ded97;
  color: white;
}

@media (max-width: 768px) {
  .tableau-abonnement {
    font-size: 13px;
  }

  .tableau-abonnement th,
  .tableau-abonnement td {
    padding: 8px;
  }
}

.cta-abonnements-section {
  background-color: #ffffff;
  padding: 30px 0;
  text-align: center;
}

.soutien-alt-section {
  background-color: #ffffff;
  padding: 20px 0;
}

/* ✅ Harmonisation Pros/Particuliers : suppression ligne grise */
.cta-abonnements-section {
  background-color: #ffffff;
  padding: 30px 0;
  text-align: center;
}

/* ✅ Harmonisation : suppression bande grise sous les CTA */
.soutien-alt-section {
  background-color: #ffffff;
  padding: 20px 0;
}

.section-soustitre {
  font-size: 18px;
  margin-top: -10px;
  margin-bottom: 30px;
  color: #666;
  font-weight: 500;
}

.table-alignement .statut {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 40px;
}

.table-alignement .statut span {
  display: block;
  font-size: 13px;
  color: #444;
  margin-top: 4px;
}

.tableaux-pros .statut {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 40px;
}

/* ✅ Forcer les cellules à la même hauteur dans le tableau Pro */
.tableaux-pros td {
  vertical-align: middle;
  height: 70px; /* tu peux ajuster cette hauteur */
}

.tableaux-pros .statut {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
}

.tableaux-pros .statut span {
  margin-top: 4px;
  font-size: 13px;
  color: #444;
}

.tableau-abonnement .info {
  display: block;
  font-size: 13px;
  color: #444;
  margin-top: 4px;
}

.footer-global {
  background-color: #f5f5f5;
  padding: 0 20px 40px;
  font-size: 14px;
  color: #333;
  border-top: 1px solid #ddd;
}

.footer-links-top {
  background-color: #f5f5f5;
  padding: 5px 0 0;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 15px;
  font-weight: bold;
  font-size: 14px;
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 40px;
}

.footer-links-top a {
  line-height: 1.6;
}

.footer-links-top a:hover {
  color: #3ded97; /* vert Let's Go */
  text-decoration: underline;
  transition: color 0.3s ease;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  padding: 40px;
  max-width: 100%; 
  margin: 0; 
  box-sizing: border-box;
}

.legal-content.merged-legal,
.merged-legal {
  width: 100%;
  max-width: 100%;
  padding: 40px 40px 20px;
  margin: 0;
  background-color: #f5f5f5;
  border-radius: 0;
  box-sizing: border-box;
}

.legal-content.merged-legal h2,
.legal-content.merged-legal h3,
.merged-legal h2,
.merged-legal h3 {
  font-size: 16px;
  font-weight: 600;
  color: #111;
  text-align: left;
  margin-top: 30px;
  margin-bottom: 10px;
}

.legal-content.merged-legal p,
.merged-legal p {
  font-size: 14px;
  line-height: 1.25;
  text-align: left;
  margin-bottom: 4px;
}

.legal-content.merged-legal ul,
.legal-content.merged-legal ol,
.merged-legal ul,
.merged-legal ol {
  padding-left: 20px;
  margin-bottom: 20px;
}

.legal-content.merged-legal li,
.merged-legal li {
  font-size: 15px;
  line-height: 1.6;
  text-align: left;
  margin-bottom: 8px;
}

.legal-content h2, .legal-content h3 {
  font-size: 16px;
  text-align: left;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 10px;
  color: #111;
}

.legal-content p {
  text-align: left;
  font-size: 15px;
  margin-bottom: 12px;
}

.legal-content ul, .legal-content ol {
  padding-left: 20px;
  margin-bottom: 20px;
}

.legal-content li {
  margin-bottom: 8px;
  font-size: 15px;
}

.legal-content-center {
  text-align: left !important;
}

.footer-left,
.footer-right {
  flex: 1;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  padding: 0 10px;
}

.footer-left {
  text-align: left;
  align-items: flex-start;
  margin-left: -15px;
}

.footer-right {
  flex: 1;
  min-width: 280px;
  max-width: 460px; /* ✅ On réduit un peu la largeur max */
  margin-right: -60px; /* ✅ On pousse un peu plus vers la droite */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.footer-faq h3 {
  margin-bottom: 10px;
}

.footer-faq ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-faq li {
  margin-bottom: 6px;
  line-height: 1.4;
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.footer-socials img {
  width: 24px;
  height: 24px;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.footer-socials img:hover {
  opacity: 1;
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-right {
    align-items: center;
    text-align: center;
  }

 .footer-links-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

.cta-button {
  background: linear-gradient(to right, #3ded97, #26c77f);
  color: white;
  padding: 1em 2em;
  border-radius: 30px;
  font-weight: bold;
  transition: transform 0.2s ease;
}
.cta-button:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.section-title.visible {
  opacity: 1;
  transform: translateY(0);
}

.footer-links-top a {
  position: relative;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links-top a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 2px;
  background-color: #3ded97;
  transition: width 0.3s ease;
}

.footer-links-top a:hover::after {
  width: 100%;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.etape {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.etape.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

section {
  padding-top: 60px;
  padding-bottom: 60px;
  text-align: center;
}

.pourquoi-contenu,
.rencontre-texte,
.evenement-intro {
  text-align: center !important;
  margin: 0 auto;
}

.legal-section-title {
  font-size: 16px;
  font-weight: 600;
  color: #111;
  margin-top: 30px;
  margin-bottom: 10px;
  text-align: left;
}

.footer-legal-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  background-color: #f2f2f2;
  padding: 10px 0 10px;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  margin-top: 0;
}

footer {
  background-color: #f5f5f5;
  padding-bottom: 40px;
}

.footer-content {
  margin-bottom: 0;
}

.footer-legal-bar span {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-legal-bar a {
  margin: 0 8px;
  font-size: 14px;
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-legal-bar a:hover {
  color: #3ded97;
  text-decoration: underline;
}

.section-title {
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
}

/* Sous-titres harmonisés */
.section-subtitle {
  font-size: 18px;
  text-align: center;
  color: #555;
  margin: 20px auto 40px;
  max-width: 900px;
}

/* ✅ Listes harmonisées dans les sections */
.section-points {
  list-style: none;
  padding: 0;
  margin: 20px auto 40px;
  font-size: 16px;
  line-height: 1.6;
  color: #444;
  max-width: 900px;
  text-align: center;
}
.section-points li {
  margin-bottom: 10px;
}

/* ✅ Espacement après le bouton KissKissBankBank */
.soutien-section {
  margin-bottom: 30px;
}

/* ✅ Espacement avant les mentions légales */
.footer-legal-bar {
  margin-top: 40px;
}

.avantage:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  transition: box-shadow 0.3s ease;
}

.palier-box:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  transition: box-shadow 0.3s ease;
}

.etape {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out, box-shadow 0.3s ease, scale 0.3s ease;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  width: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transform: scale(1);
}

.etape:hover {
  transform: translateY(30px) scale(1.015);
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.12);
}

.fond-blanc {
  background-color: #ffffff;
}

.fond-gris {
  background-color: #f8f8f8;
