.sn-primary-color {
    color: var(--primaryColor);
}

.educationarea__bottom__button a {
    width: 100%;
}

.aboutimg__2 {
    border-radius: 16px;           
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15); 
    overflow: hidden;              
    transition: all 0.3s ease;   
}

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

/* Déplacement global vers la gauche */
.aboutarea__list {
    margin-left: -20px;
}

.aboutarea__list li {
    position: relative;
    padding-left: 70px;
    margin-bottom: 45px;
}

/* Ligne verticale parfaitement centrée */
.aboutarea__list li::before {
    content: "";
    position: absolute;
    left: 33px; /* centre exact du cercle */
    top: 10px;
    width: 1px;
    height: calc(100% + 5px);
    background-color: #6b5cff;
}

/* Supprimer la ligne pour le dernier élément */
.aboutarea__list li:last-child::before {
    display: none;
}

/* Wrapper */
.step-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 22px;
}

/* Cercle numéroté */
.step-wrapper strong {
    position: absolute;
    left: 10px;
    top: 0;
    width: 46px !important;
    height: 46px !important;
    border-radius: 50%;
    border: 2px solid #6b5cff !important;
    background-color: #ffffff !important; /* FOND BLANC */
    color: #6b5cff !important;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2; /* passe au-dessus de la ligne */
}

/* Texte */
.step-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1c1c1c;
}

.step-subtitle {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
}

.gridarea {
    padding-top: 150px !important;
}

.gridarea__small__icon {
    display: none !important;
}

.gridarea__footer {
    position: absolute;
    bottom: -5px;
    left: 7px;
}

.gridarea__footer p {
    background-color: gray;
    color: white;
    font-size: 12px;
    padding: 5px 15px;
    border-radius: 16px;
}

.gridarea__heading {
    min-height: 70px !important;
}

.populerarea__button {
    margin-bottom: 100px;
}

/* =========================
   HERO / Register area
   ========================= */

/* 1) Fond + overlay */
.registerarea {
    position: relative;
    overflow: hidden;
  
    /* Image de fond (à adapter) */
    background-image: url("../img/register/register__bg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  
    /* Hauteur / respiration proche maquette */
    min-height: 420px;
    display: flex;
    align-items: center;
  
    /* si ton thème ajoute des marges/paddings, on stabilise */
    padding: 70px 0;
    margin-bottom: 0 ;
  }
  
  /* overlay sombre */
  .registerarea::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 0;
  }
  
  /* Remettre le contenu au-dessus de l’overlay */
  .registerarea .container,
  .registerarea .row,
  .registerarea__wraper,
  .registerarea__section__title,
  .section__title__heading,
  .registerarea .my-3 {
    position: relative;
    z-index: 1;
  }
  
  /* 2) Placement desktop : le bloc texte à gauche */
  .registerarea__wraper {
    justify-content: center; /* déjà dans ton HTML, on sécurise */
    padding: 10px 0;
  }
  
  .section__title__heading {
    text-align: left !important;
  }
  
  /* 3) Typo conforme */
  .section__title__heading h2 {
    margin: 0 0 22px 0;
    color: #ffffff;
    font-weight: 800;
    line-height: 1.15;
  
    /* responsive comme la maquette */
    font-size: clamp(28px, 3.2vw, 44px);
  }
  
  /* Ton span inline a déjà color:#260094;
     sur la maquette c’est un violet plus “clair”.
     Sans toucher au HTML, on peut surcharger :
  */
  .section__title__heading h2 span {
    color: #7c5cff !important;
  }
  
  /* 4) Bouton conforme (pill violet) */
  .registerarea a.btn.btn-primary.rounded-pill {
    background-color: #6f4dff !important;
    border-color: #6f4dff !important;
    color: #fff !important;
  
    padding: 12px 34px !important;
    font-weight: 700 !important;
    border-radius: 999px !important;
  
    box-shadow: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.15s ease, background-color 0.15s ease;
  }
  
  .registerarea a.btn.btn-primary.rounded-pill:hover {
    background-color: #5f3dff !important;
    border-color: #5f3dff !important;
    transform: translateY(-1px);
  }
  
  /* =========================
     Mobile (maquette 2)
     ========================= */
  @media (max-width: 768px) {
    .registerarea {
      min-height: 520px;
      padding: 80px 0;
    }
  
    /* Centrage du texte et du bouton */
    .section__title__heading {
      text-align: center !important;
    }
  
    .registerarea .my-3 {
      display: flex;
      justify-content: center;
    }
  
    /* On évite les retours de ligne trop “découpés” selon la largeur */
    .section__title__heading h2 {
      max-width: 520px;
      margin-left: auto;
      margin-right: auto;
    }
  }
  
  /* Optionnel: si ton thème impose une couleur sombre au h2 ailleurs */
  .registerarea .section__title__heading h2 {
    text-shadow: 0 2px 20px rgba(0,0,0,.35);
  }
  
 .gridarea h2 {
    color: black;
 }
 
 /* =========================
   Support block (custom-support)
   ========================= */

.testmonialarea.custom-support {
    background-color: #f2eaff !important; /* lavande proche maquette */
    padding: 90px 0 !important;
  }
  
  /* Colonne texte */
  .testmonialarea.custom-support .support-title {
    margin: 0 0 14px 0;
    color: #6f4dff;              /* violet titre */
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    font-size: clamp(26px, 3vw, 40px);
    max-width: 560px;
  }
  
  /* Texte */
  .testmonialarea.custom-support .support-text {
    margin: 0;
    color: #151515;
    opacity: 0.95;
    font-size: 15px;
    line-height: 1.6;
    max-width: 560px;
  }
  
  /* Colonne icône */
  .testmonialarea.custom-support .support-icon {
    width: min(280px, 70vw);
    height: auto;
    max-width: none !important; /* écrase le inline max-width:200px */
    filter: drop-shadow(0 8px 26px rgba(111, 77, 255, 0.18));
  }
  
  /* Optionnel : équilibre visuel comme maquette (plus d'air) */
  @media (min-width: 992px) {
    .testmonialarea.custom-support .col-md-7 {
      padding-right: 28px;
    }
  }
  
  /* =========================
     Mobile (icône au-dessus + centré)
     ========================= */
  @media (max-width: 767.98px) {
    .testmonialarea.custom-support {
      padding: 70px 0 !important;
    }
  
    /* On inverse l'ordre : icône d'abord */
    .testmonialarea.custom-support .row {
      flex-direction: column-reverse;
      row-gap: 16px;
    }
  
    .testmonialarea.custom-support .support-title,
    .testmonialarea.custom-support .support-text {
      text-align: center;
      margin-left: auto;
      margin-right: auto;
    }
  
    .testmonialarea.custom-support .support-icon {
      width: min(160px, 55vw); /* taille icône mobile comme ta maquette */
    }
  }
  
/* =========================
   Secure area - SoutenonsNous
   ========================= */

 .secure-area {
    margin-top: 100px;
  }
  
  /* Titre */
  .secure-area .sn-section-title {
    text-align: left;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin: 0 0 26px 0;
    color: #1a1a1a;
    font-size: clamp(22px, 2.6vw, 34px);
  }
  
  .secure-area .sn-section-title .sn-highlight {
    color: #6f4dff;
    font-weight: 800;
  }
  
  /* Wrapper image (fond) */
  .secure-area .sn-content-wrapper {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
  
    /* On “force” un rendu proche maquette : cover + centrage */
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: cover !important;   /* écrase ton background-size:auto inline */
    height: 600px !important;           /* garde ta hauteur, ajustable */
  
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 36px;
  }
  
  /* Container des cartes : placement à droite */
  .secure-area .sn-info-cards {
    position: relative;
    width: min(420px, 100%);
    max-width: 420px !important;
  
    display: flex !important;
    flex-direction: column;
    gap: 18px !important;
  
    /* écrase ton justify-content:center + wrap */
    justify-content: flex-start !important;
    flex-wrap: nowrap !important;
  
    /* et on annule le max-width 90% inline */
    max-width: 420px !important;
  }
  
  /* Base carte */
  .secure-area .sn-info-card {
    border-radius: 14px !important;
    padding: 26px !important;
    text-align: left !important;
  
    max-width: none !important;      /* écrase max-width:250px inline */
    min-height: auto !important;     /* écrase min-height inline */
  
    background: rgba(255,255,255,0.92) !important;
    box-shadow: 0 14px 40px rgba(0,0,0,0.14);
    backdrop-filter: blur(2px);
  }
  
  /* Carte violette (haut) */
  .secure-area .sn-card-purple {
    background: #6f4dff !important;
    color: #fff;
  }
  
  /* Carte lavande (bas) */
  .secure-area .sn-card-pink {
    background: #efe7ff !important; /* lavande comme maquette */
    color: #1a1a1a;
  }
  
  /* Icône : on remplace tes emojis par un style proche */
  .secure-area .sn-card-icon {
    font-size: 30px !important;
    margin-bottom: 14px;
    line-height: 1;
    opacity: 0.95;
  }
  
  /* Titres cartes */
  .secure-area .sn-card-title {
    margin: 0 0 10px 0;
    font-size: 18px !important;
    font-weight: 800;
    letter-spacing: -0.01em;
  }
  
  /* Texte cartes */
  .secure-area .sn-card-description {
    margin: 0;
    font-size: 13.5px !important;
    line-height: 1.55;
    opacity: 0.95;
  }
  
  /* Ajustement couleurs de texte selon fond */
  .secure-area .sn-card-purple .sn-card-description {
    opacity: 0.92;
  }
  
  /* =========================
     Mobile (pile centrée)
     ========================= */
  @media (max-width: 767.98px) {
    .secure-area .sn-content-wrapper {
      height: 650px !important;
      padding: 22px;
      justify-content: center;
    }

    .secure-area .sn-section-title {
        text-align: center;
    }
  
    .secure-area .sn-info-cards {
      width: min(520px, 100%);
      max-width: 520px !important;
      margin: 0 auto;
    }
  
    .secure-area .sn-info-card {
      text-align: left !important; /* maquette: texte aligné gauche dans cartes */
    }
  }
  
  .sn-card-pink .sn-card-icon {
    background: #fff;
   }

   #campaignGrid {

   }

   .fundraiser-image-section img {
        width: 100%;
    }

    /* =========================
   Organizer card (fundraiser details)
   ========================= */

.fundraiser-fundraiser-details {
    background: #fff;
    border: 1px solid #e9e9ee;
    border-radius: 10px;
    padding: 14px 16px;
  }
  
  /* On allège le H3 (optionnel, selon maquette) */
  .fundraiser-fundraiser-details > h3 {
    margin: 0 0 10px 0;
    font-size: 14px;       /* maquette: label discret */
    font-weight: 600;
    color: #6b6b6b;
  }
  
  /* Avatar */
  .organizer-img {
    width: 36px;
    height: 36px;
    object-fit: cover;
    flex: 0 0 36px;
    border: 2px solid #f1f1f6;
  }
  
  /* Ligne principale (avatar + bloc texte/bouton) */
  .fundraiser-fundraiser-details .d-flex.align-items-center.gap-3 {
    gap: 12px !important;
    flex-wrap: wrap; /* permet de passer en 2 lignes si nécessaire */
  }
  
  /* Bloc texte (nom + bouton) */
  .fundraiser-fundraiser-details .d-flex.align-items-center.gap-3 > div {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1 1 auto;
    min-width: 220px; /* évite que tout casse trop tôt */
  }
  
  /* Nom */
  .fundraiser-fundraiser-details strong {
    font-size: 14px;
    font-weight: 800;
    color: #111;
    line-height: 1.2;
  }
  
  /* Bouton à droite en desktop */
  .fundraiser-contact-btn {
    margin-left: auto;              /* pousse à droite */
    margin-top: 0 !important;       /* écrase mt-1 */
    padding: 6px 14px;
    border-radius: 999px;
    border-color: #d7d7e2;
    color: #111;
    background: #fff;
    font-weight: 600;
  }
  
  /* Hover plus “soft” */
  .fundraiser-contact-btn:hover {
    background: #f6f6fb;
    border-color: #cfcfe0;
    color: #111;
  }
  
  /* =========================
     Mobile : bouton sous le nom
     ========================= */
  @media (max-width: 576px) {
    /* Empiler le bloc texte */
    .fundraiser-fundraiser-details .d-flex.align-items-center.gap-3 > div {
      flex-direction: column;
      align-items: flex-start;
      gap: 6px;
      min-width: 0;
    }
  
    /* Bouton sous le nom, aligné à gauche */
    .fundraiser-contact-btn {
      margin-left: 0;
      width: fit-content;
    }
  }
  
  /* =========================
   Support messages list
   ========================= */

.fundraiser-messages .fundraiser-container {
    max-width: 720px; /* proche rendu maquette */
  }
  
  /* Titre + compteur */
  .fundraiser-messages h3.h5 {
    font-size: 16px;
    font-weight: 800 !important;
    margin-bottom: 4px !important;
    color: #111;
  }
  
  /* Le compteur en violet au lieu de text-muted gris */
  .fundraiser-messages h3.h5 .text-muted {
    color: #6f4dff !important;
    font-weight: 700;
  }
  
  /* Liste : aspect “simple”, pas de cards */
  .fundraiser-message-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 10px;
  }
  
  /* Chaque item : on annule p-3, mb-3 */
  .fundraiser-message {
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    background: transparent !important;
  }
  
  /* Nom */
  .fundraiser-user-name {
    display: inline-block;
    font-size: 13px;
    font-weight: 800;
    color: #111;
    line-height: 1.2;
  }
  
  /* Ligne meta (montant/date) si tu l’ajoutes (voir option plus bas) */
  .fundraiser-user-meta {
    display: inline-flex;
    gap: 8px;
    font-size: 12px;
    color: #6b6b6b;
    font-weight: 600;
  }
  
  /* Message : icône à gauche + texte à droite */
  .fundraiser-message-text {
    margin: 4px 0 0 0 !important;
    display: grid;
    grid-template-columns: 20px 1fr;
    column-gap: 10px;
    align-items: start;
  
    font-size: 12.5px;
    line-height: 1.55;
    color: #2a2a2a;
  }
  
  /* Icône : on remplace 💬 par un style discret à gauche */
  .fundraiser-msg-icon {
    display: inline-flex;
    width: 18px;
    height: 18px;
    align-items: center;
    justify-content: center;
  
    font-size: 12px;
    color: #ff5b5b; /* petit accent rouge comme sur la capture */
    transform: translateY(1px);
  }
  
  /* Séparateur léger entre items (comme une liste) */
  .fundraiser-message + .fundraiser-message {
    border-top: 1px solid #efeff5;
    padding-top: 14px !important;
  }
  
  /* Bouton "voir tous" */
  .fundraiser-view-more-btn {
    border-radius: 10px;
    padding: 10px 14px;
    border-color: #d7d7e2;
    color: #111;
    font-weight: 700;
    background: #fff;
  }
  
  .fundraiser-view-more-btn:hover {
    background: #f6f6fb;
    border-color: #cfcfe0;
    color: #111;
  }

  @media (max-width: 767.98px) {

    /* 1) La colonne donation doit être un bloc normal (pas fixed) */
    .fundraiser-donation-card {
      position: static !important;
      margin-top: 14px;
    }
  
    /* 2) Carte simple, comme la maquette */
    .fundraiser-donation-card .fundraiser-card {
      background: transparent;     /* la maquette n’affiche pas une grosse carte autour des boutons */
      border: 0;
      box-shadow: none;
      padding: 0;
    }
  
    /* 3) On transforme l’intérieur en colonne, et on réordonne */
    .fundraiser-donation-card .fundraiser-card {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }
  
    /* --- Boutons en haut (Je soutiens puis Partager) --- */
    .fundraiser-donation-card a:has(.fundraiser-btn-support) {
      order: 1;
      display: block;
    }
  
    .fundraiser-btn-support {
      width: 100%;
      border: 0;
      border-radius: 999px;
      background: #6f4dff;
      color: #fff;
      font-weight: 800;
      padding: 14px 16px;
      font-size: 15px;
    }
  
    .fundraiser-btn-share {
      order: 2;
      width: 100%;
      border-radius: 999px;
      padding: 13px 16px;
      font-weight: 700;
      background: #fff;
      border: 1px solid #d7d7e2;
      color: #111;
    }
  
    /* --- Bloc stats sous la description (comme capture) --- */
    .fundraiser-header {
      order: 4; /* on le met après les boutons */
      margin: 0 !important;
  
      background: #fff;
      border: 1px solid #ececf4;
      border-radius: 16px;
      padding: 14px;
      box-shadow: 0 12px 30px rgba(0,0,0,.08);
  
      display: flex !important;
      justify-content: space-between;
      align-items: center !important;
      gap: 12px;
    }
  
    /* Montant + libellé "Collectés" en une ligne */
    .fundraiser-amount {
      font-size: 16px !important;
      font-weight: 900 !important;
      line-height: 1.1;
    }
  
    /* Ajoute visuellement "Collectés" après le montant (sans HTML) */
    .fundraiser-amount::after {
      content: " Collectés";
      font-size: 12px;
      font-weight: 700;
      color: #6b6b6b;
      margin-left: 6px;
    }
  
    /* Pills objectif + dons */
    .fundraiser-goal-info,
    .fundraiser-days-info {
      background: #f1edff !important;
      color: #6f4dff !important;
      font-size: 12px !important;
      padding: 6px 10px !important;
      border-radius: 999px !important;
      margin-top: 8px !important;
    }
  
    /* Cercle (petit à droite) */
    .fundraiser-progress-circle {
      width: 56px;
      height: 56px;
      position: relative;
      flex: 0 0 56px;
    }
  
    .fundraiser-progress-circle svg {
      width: 56px;
      height: 56px;
      display: block;
    }
  
    .fundraiser-progress-text {
      position: absolute;
      inset: 0;
      display: grid;
      place-items: center;
      font-size: 12px;
      font-weight: 800;
      color: #6f4dff;
    }
  
    /* --- Bouton "Voir tous les dons" dans la carte stats --- */
    .fundraiser-btn-view-all {
      order: 5;
      width: 100%;
      border-radius: 12px;
      padding: 12px 14px;
      border: 1px solid #d7d7e2;
      background: #fff;
      font-weight: 800;
      color: #111;
    }
  
    /* La liste des dons on la masque dans ce rendu (maquette = bouton seulement) */
    .fundraiser-donations-list .fundraiser-donation-item,
    #toggle-donations {
      display: none !important;
    }
  
    /* 4) Éléments non présents sur la maquette mobile → on masque */
    .fundraiser-countdown,
    .fundraiser-protection-badge {
      display: none !important;
    }
  }
  
  .fundraiser-message-list {
     margin-bottom: 4em;
  }

  .safe-faq-category.safe-active::before {
    display: none;
  }

  /* =========================
   How it works - SoutenonsNous
   ========================= */

.how-it-works {
  background: #faf7ff; /* lavande très clair comme la maquette */
  padding: 70px 0;
}

/* Container (tu as container-C) */
.how-it-works .container-C {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Titre + intro */
.how-it-works .section-title {
  text-align: center;
  margin-bottom: 18px;
}

.how-it-works .section-title h3 {
  margin: 0 0 10px 0;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #111;
  font-size: clamp(20px, 2.4vw, 30px);
}

.how-it-works .section-title p {
  margin: 0 auto;
  max-width: 760px;
  color: #6b6b6b;
  font-size: 13.5px;
  line-height: 1.55;
}

/* Image */
.how-it-works .how-image {
  width: min(760px, 100%);
  height: auto;
  display: block;
  margin: 12px auto 0;
}

/* Sous-titre "C'est rapide et sécurisé" */
.how-it-works .steps-title {
  margin: 8px 0 22px 0;
  color: #6f4dff;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.01em;
}

/* =========================
   Steps layout + line
   ========================= */

.how-it-works .steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px;
  padding-top: 34px; /* espace pour la ligne */
  margin-top: 10px;
}

/* La ligne horizontale (comme la maquette) */
.how-it-works .steps::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 10px;
  height: 2px;
  background: rgba(111, 77, 255, 0.35);
  border-radius: 2px;
}

/* Chaque step */
.how-it-works .step {
  text-align: left;
}

/* Rond numéroté posé sur la ligne */
.how-it-works .step-number {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: #fff;
  border: 2px solid rgba(111, 77, 255, 0.55);
  color: #6f4dff;
  font-weight: 800;
  font-size: 12px;

  display: grid;
  place-items: center;

  /* le positionner sur la ligne */
  margin-top: -38px;  /* remonte au niveau de la ligne */
  margin-bottom: 14px;
}

/* Titre step */
.how-it-works .step h3 {
  margin: 0 0 10px 0;
  font-size: 13.5px;
  font-weight: 800;
  color: #111;
}

/* Texte step */
.how-it-works .step p {
  margin: 0;
  font-size: 12.5px;
  line-height: 1.55;
  color: #6b6b6b;
}

/* =========================
   CTA button
   ========================= */

.how-it-works .cta {
  text-align: center;
  margin-top: 34px;
}

.how-it-works .cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 12px 34px;
  border-radius: 999px;
  background: #6f4dff;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  font-size: 13px;

  box-shadow: 0 14px 34px rgba(111, 77, 255, 0.25);
  transition: transform .15s ease, background-color .15s ease;
}

.how-it-works .cta-button:hover {
  background: #5f3dff;
  transform: translateY(-1px);
}

/* =========================
   Responsive
   ========================= */

@media (max-width: 991.98px) {
  .how-it-works .steps {
    gap: 24px;
  }
}

@media (max-width: 767.98px) {
  .how-it-works {
    padding: 55px 0;
  }

  .how-it-works .steps {
    grid-template-columns: 1fr;
    padding-top: 0;
    gap: 18px;
  }

  /* On désactive la ligne horizontale en mobile */
  .how-it-works .steps::before {
    display: none;
  }

  /* Numéro en tête classique */
  .how-it-works .step-number {
    margin-top: 0;
    margin-bottom: 10px;
  }

  .how-it-works .step {
    text-align: center;
  }

  .how-it-works .step p {
    max-width: 420px;
    margin: 0 auto;
  }
}

/* =========================
   Advice page (adv-*)
   ========================= */

   :root {
    --adv-purple: #6f4dff;
    --adv-text: #111;
    --adv-muted: #6b6b6b;
    --adv-border: #ececf4;
    --adv-bg: #ffffff;
  }
  
  .adv-header {
    text-align: center;
    padding: 26px 0 8px;
  }
  
  .adv-header-title {
    margin: 0 0 14px 0;
    color: var(--adv-purple);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.02em;
    font-size: clamp(18px, 2.6vw, 26px);
  }
  
  /* Search */
  .adv-searchbox {
    width: min(420px, 100%);
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
  }
  
  .adv-search-icon {
    position: absolute;
    left: 12px;
    width: 18px;
    height: 18px;
    fill: #9aa0a6;
    pointer-events: none;
  }
  
  .adv-searchbox-input {
    width: 100%;
    height: 34px;
    border: 1px solid var(--adv-border);
    border-radius: 999px;
    padding: 0 14px 0 38px;
    outline: none;
    background: #fff;
    font-size: 12.5px;
    color: var(--adv-text);
  }
  
  .adv-searchbox-input::placeholder {
    color: #9aa0a6;
  }
  
  .adv-searchbox-input:focus {
    border-color: rgba(111, 77, 255, 0.45);
    box-shadow: 0 0 0 4px rgba(111, 77, 255, 0.10);
  }
  
  /* =========================
     Top list (3 big cards)
     ========================= */
  
  .adv-articles-section {
    width: min(820px, 100%);
    margin: 18px auto 18px;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  
  .adv-article-card {
    display: grid;
    grid-template-columns: 170px 1fr;
    gap: 14px;
    align-items: center;
  
    background: var(--adv-bg);
    border: 1px solid var(--adv-border);
    border-radius: 10px;
    padding: 10px;
  
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
  }
  
  .adv-article-image {
    width: 100%;
    height: 96px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
  }
  
  .adv-article-content {
    text-align: left;
    padding-right: 6px;
  }
  
  .adv-article-title {
    margin: 0 0 6px 0;
    font-weight: 800;
    color: var(--adv-text);
    font-size: 14px;
    line-height: 1.25;
  }
  
  .adv-article-description {
    margin: 0 0 8px 0;
    color: var(--adv-muted);
    font-size: 12px;
    line-height: 1.45;
  }
  
  .adv-article-meta {
    font-size: 11.5px;
    color: #8a8a8a;
  }
  
  /* =========================
     Bottom grid (3 mini cards)
     ========================= */
  
  .adv-cards-grid {
    width: min(820px, 100%);
    margin: 10px auto 22px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }
  
  .adv-mini-card {
    background: var(--adv-bg);
    border: 1px solid var(--adv-border);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
  }
  
  .adv-mini-card-image {
    width: 100%;
    height: 120px;
    object-fit: cover;
    display: block;
  }
  
  .adv-mini-card-content {
    padding: 10px 12px 12px;
    text-align: left;
  }
  
  .adv-mini-card-title {
    margin: 0 0 6px 0;
    font-weight: 800;
    font-size: 14px;
    color: var(--adv-text);
    line-height: 1.25;
  }
  
  .adv-mini-card-description {
    margin: 0 0 8px 0;
    color: var(--adv-muted);
    font-size: 14px;
    line-height: 1.45;
  }
  
  .adv-mini-card-meta {
    font-size: 11.5px;
    color: #8a8a8a;
  }
  
  /* =========================
     Pagination
     ========================= */
  
  .adv-pagination {
    width: min(820px, 100%);
    margin: 10px auto 10px !important;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
  }
  
  .adv-pagination-btn {
    min-width: 34px;
    height: 34px;
    padding: 0 10px;
    border-radius: 10px;
    border: 1px solid var(--adv-border);
    background: #fff;
    color: var(--adv-text);
    font-weight: 800;
    font-size: 12px;
  }
  
  .adv-pagination-btn.active {
    background: var(--adv-purple);
    border-color: var(--adv-purple);
    color: #fff;
  }
  
  .adv-pagination-dots {
    color: #8a8a8a;
    font-weight: 700;
  }
  
  /* =========================
     Responsive
     ========================= */
  
  @media (max-width: 767.98px) {
    .adv-article-card {
      grid-template-columns: 1fr;
    }
  
    .adv-article-image {
      height: 140px;
    }
  
    .adv-cards-grid {
      grid-template-columns: 1fr;
    }
  }

  .aboutarea {
    background: white;
    padding-bottom: 50px;
    padding-top: 70px;
  }
  
  .aboutarea, .gridarea {
    background-color: white;
  }

  html {
    background: linear-gradient(180deg, #DED4FF 0%, #FFFFFF 100%);
  }

  .educationarea__wrapper .educationarea__heading h2 {
    font-size: 56px;
    line-height: 56px;
  }

  /* Masquer l'image en mode mobile */
  @media (max-width: 768px) {
    .aboutimg__2 {
        display: none;
    }
    .aboutarea__headding {
      margin-bottom: -5em !important;
    }
    .aboutarea__content__wraper {
      margin-bottom: -9em !important;
    }
    .educationarea {
      text-align: center;
    }
    .educationarea__wrapper .educationarea__heading h2 {
      font-size: 48px;
      line-height: 48px;
      margin-bottom: .5em;
    }
    .educationarea__right__wraper .educationarea__img {
      text-align: center;
    }
    .educationarea__right__wraper {
      margin-bottom: -5em !important;
    }
    .educationarea__wrapper {
      margin-top: 3em !important;
    }
  }