                                                         /* LANDING PAGE */
    /* Premiere section */                                              
    .landing {
      display: flex;
      justify-content: space-between;
      align-items: center; /* Alignement vertical centré */
      background-color: #ffffff;
      border: 3px solid green;
      border-radius: 20px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.05);
      margin: 30px auto;
      padding: 40px;
      max-width: 1100px;
      gap: 40px;
    }
    
   
    
    .landing-image {
      flex: 1;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    
    .landing-image img {
      max-width: 100%;
      width: 330px;
      height: auto;
      border-radius: 20px;
    }
    
    .boutons-collaborateur {
      display: flex;
      flex-wrap: nowrap; /* reste sur une seule ligne */
      gap: 15px;
      margin-top: 30px;
    }
    
    .btn-collab,
    .btn-projet {
      padding: 12px 24px;
      border-radius: 30px;
      font-weight: 600;
      font-size: 15px;
      text-decoration: none;
      white-space: nowrap;
      transition: 0.3s ease;
    }
    
    .btn-collab {
      background-color: #1e7a1e;
      color: white;
    }
    
    .btn-collab:hover {
      background-color: #145214;
    }
    
    .btn-projet {
      border: 2px solid #1e7a1e;
      color: #1e7a1e;
      background-color: white;
    }
    
    .btn-projet:hover {
      background-color: #f0fff0;
    }
    

  
  .cta-info a {
    font-weight: bold;
    color: #2e7d32;
    text-decoration: underline;
  }
  
  .landing-text {
    flex: 1;
    color: black;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .landing h1,
  .landing p,
  .landing .cta-info {
    text-align: left; /* force l'alignement gauche */
    margin-left: 0;
  }
  
  .cta-info {
    font-weight: bold;
    color: #2a7d2e;
    margin-bottom: 20px;
    line-height: 1.6;
  }
 
  

  
  .landing-image {
    display: flex;
    justify-content: flex-end; /* Pour mettre  l'image à droie */
    align-items: flex-start; /* Alignement en haut */
  }
  
  .landing-image img {
    width: 350px; /* Taille de l'image à modifier si on change l'image*/
    height: auto;
    border-radius: 40px; /* Bords arrondis pour l'image */
  }
  /* Premiere section */   
  


  /*Deuxieme section ANNONCES POPULAIRE*/
  :root {
    --primary-color: green;
    --primary-dark: rgb(6, 78, 6);
    --primary-light: #d1ffd1;
    --text-color: #333;
    --background: #f8f8f8;
  }
  
  body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: white;
  }
  
  .container {
    max-width: 1200px;
    margin: auto;
    padding: 60px 20px;
  }
  
  .textepop h2 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 30px;
    text-align: left;
    line-height: 1.5;
  }
  
  .highlight {
    color: var(--primary-color);
    font-weight: 600;
  }
  
  .cards-wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap; /* Forcer 5 cartes sur une seule ligne */
    gap: 20px;
  }
  
  .project-card {
    width: 200px;
    min-height: 420px;
    background-color: var(--background);
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  
  .project-card:hover {
    background-color: var(--primary-light);
    border-color: var(--primary-dark);
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }
  
  .project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: all 0.3s ease;
  }
  
  .project-card:hover::before {
    transform: scaleX(1);
  }
  
  .icon-container {
    background-color:#f8f8f8;
    border-radius: 50%;
    height: 60px;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px auto;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  }
  
  .project-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 10px 0;
    color: var(--text-color);
  }
  
  .project-card p {
    font-size: 14px;
    color: #555;
  }
  
  .btn-details {
    background-color: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 9999px;
    font-weight: 600;
    display: inline-block;
    margin-top: 20px;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.2s;
  }
  
  .btn-details:hover {
    background-color: var(--primary-dark);
    transform: scale(1.05);
  }
                                            

  
                                                 /*Deuxieme section ANNONCES POPULAIRE*/





  
                                                 /*CONTENEUR COLLABORATEUR */
   
.conteneur-collaborateur {
  display: flex;
  flex-direction: row; /* Texte à gauche, image à droite */
  gap: 100px;
  padding: 10px;
  width: 90%;
  margin: 70px auto -50px auto;
  text-align: left;
  align-items: center;
  flex-wrap: wrap;
}

.texte-collaborateur {
  flex: 1 1 500px;
  order: 1;
}

.image-collaborateur {
  flex: 1 1 400px;
  display: flex;
  justify-content: flex-end; /* image alignée à droite */
  align-items: center;
  padding: 10px;
  border-radius: 20px;
  order: 2;
}

.image-collaborateur img {
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.texte-collaborateur h2 {
  font-size: 28px;
  color: #1e7a1e;
  font-weight: 700;
  margin-bottom: 20px;
}

.texte-collaborateur .soustitre {
  font-size: 22px;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

.texte-collaborateur .description {
  font-size: 16px;
  color: #555;
  margin-bottom: 25px;
  line-height: 1.6;
}

.liste-arguments {
  list-style-type: disc;
  padding-left: 20px;
  color: #555;
  margin-bottom: 30px;
}

.liste-arguments li {
  margin-bottom: 10px;
}


                                                 /*CONTENEUR COLLABORATEUR */

  
  /*Troisieme dection POURQUOI NOUS CHOISIR*/
  /* Conteneur principal */
  .conteneur-pourquoinouschoisir {
      display: flex;
      gap: 100px; /* Espacement entre l'image et le texte */
      padding: 10px;
      width: 90%; /* Ajuster la largeur pour un bon rendu */
      margin-top: 70px;
      margin-bottom: -50px;
      text-align: left; /* Alignement du texte à gauche */
  }
  
  .imagepourquoinouschoisir {
      display: flex;
      align-items: center;
      justify-content: center;
      margin-left: 60px;
      padding: 10px; /* Ajoute un espace intérieur pour voir le fond */
      border-radius: 20px;
  }
  
  .imagepourquoinouschoisir img {
      width: 90%; /* Laisse un peu d'espace pour voir le background */
      max-width: 800px; /* Ajuste la taille max */
      height: auto;
      border-radius: 20px;
  }
  
  /* Partie texte */
  .textepourquoinouschoisir {

    margin-right: 0px;
      margin-bottom: 30px;
  }
  
  .textepourquoinouschoisir h2 {
      font-size: 22px;
      margin-bottom: 40px;
      margin-left: 100px;
      color: #000000;
  }
  
  .liste-choix {
      margin-top: 0px;
      display: flex;
      flex-direction: column;
      gap: 20px;
  }
  
  .liste-choix figure {
      display:flex;
      align-items: center;
      gap: 20px;
  }
  
  .liste-choix img {
      width: 50px;
      height: 50px;
  }
  
  .liste-choix figcaption h3 {
      margin: 0;
      font-size: 20px;
      font-weight: bold;
  }
  
  .liste-choix figcaption p {
      margin: 5px 0 0;
      font-size: 16px;
      color: #555;
  }
  
  
  /*Troisieme dection POURQUOI NOUS CHOISIR*/

   /*Landing page responsive */

  @media screen and (max-width: 992px) {
  /* SECTION 1 – .landing */
  .landing {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 20px;
    gap: 30px;
  }

  .landing-text {
    text-align: center;
    align-items: center;
  }

  .landing h1,
  .landing p,
  .landing .cta-info {
    text-align: center;
    margin-left: 0;
  }

  .boutons-collaborateur {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  /* SECTION 2 – .cards-wrapper */
  .cards-wrapper {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .project-card {
    width: 100%;
    max-width: 320px;
  }

  /* SECTION 3 – .conteneur-collaborateur */
  .conteneur-collaborateur {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

  .texte-collaborateur {
    order: 2;
    text-align: center;
  }

  .image-collaborateur {
    order: 1;
    justify-content: center;
  }

  /* SECTION 4 – .conteneur-pourquoinouschoisir */
  .conteneur-pourquoinouschoisir {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    text-align: center;
  }

  .textepourquoinouschoisir h2 {
    margin-left: 0;
  }

  .imagepourquoinouschoisir {
    margin-left: 0;
    justify-content: center;
  }
}
/*Landing page responsive */
  
                                                 /* ==================================== */
                                                 /* LANDING PAGE */
                                                  /* ==================================== */


                                                /* ==================================== */                                                 
                                                /* Style général pour la page CGU */
                                                /* ==================================== */                                               
  
  .containerCGU {
    max-width: 900px;
    margin: 30px auto;
    padding: 40px;
    background-color: #ffffff;
    text-align: left;
    line-height: 1.2;
    color: #333;
  }
  
  .containerCGU h1 {
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
    margin-left: 0px;
    color: #000000;
  }
  
  .containerCGU h2 {
    font-size: 21px;
    color: #1A702D;
    margin-top: 20px;
    margin-bottom: 10px;
    border-bottom: 1px solid #a3a6a4;
    padding-bottom: 5px;
  }
  
  .containerCGU p {
    font-size: 16px;
    line-height: 1.2;
    color: #333;
    margin-bottom: 30px;
  }


  /* Alignement du texte avec le logo */
  .containerCGU {
    width: 100%;
    max-width: 1100px;
    margin: auto;

    margin-left: 0px; /* Ajuster selon l'alignement du logo */
    margin-right: 0px;
  
  }

                                         /* ==================================== */
                                      /* Style général pour la page CGU */
                                       /* ==================================== */



                                                 /* ==================================== */                                    
                                                /* Mentions légales*/
                                                 /* ==================================== */                                              
  
  .containerMentions {
    max-width: 900px;
    margin: 50px auto;
    padding: 40px;
    background-color: #ffffff;
    text-align: left;
    line-height: 1.2;
    color: #333;
  }
  
  .containerMentions h1 {
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    margin-left: 0px;
    color: #000000;
  }
  
  .containerMentions h2 {
    font-size: 21px;
    color: #1A702D;
    margin-top: 20px;
    margin-bottom: 10px;
    border-bottom: 1px solid #a3a6a4;
    padding-bottom: 5px;
  }
  
  .containerMentions p {
    font-size: 16px;
    line-height: 1.2;
    color: #333;
    margin-bottom: 30px;
  }
  
  /* Alignement et structuration */
  .containerMentions {
    width: 100%;
    max-width: 1100px;
    margin: auto;
    padding: 20px;
    margin-left: 0px; /* Ajuster selon l'alignement du logo */
    margin-right: 0px;
  }
  
                                                 /* ==================================== */
                                                /* Mentions légales*/
                                               /* ==================================== */




                                                /* ==================================== */                                               
                                                /*COOKIES*/
                                                  /* ==================================== */                                             
  .containerCookies {
    max-width: 900px;
    margin-bottom: 0px ;
    padding: 20px;
    background-color: #ffffff;
    text-align: left;
    line-height: 1.2;
    color: #333;
  }
  
  .containerCookies h1 {
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
    color: #000000;
  }
  
  .containerCookies h2 {
    font-size: 21px;
    color: #1A702D;
    margin-top: 20px;
    margin-bottom: 15px;
    border-bottom: 1px solid #a3a6a4;
    padding-bottom: 5px;
  }
  
  .containerCookies p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px;
  }
  
  .containerCookies ul {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  
  .containerCookies ul li {
    margin-bottom: 10px;
    line-height: 1.4;
  }
  
  .containerCookies a {
    color: #1A702D;
    text-decoration: none;
  }
  
  .containerCookies a:hover {
    text-decoration: underline;
  }
  
  .containerCookies .footer {
    margin-top: 40px;
    text-align: center;
    font-size: 14px;
    color: #666;
  }
                                                 /* ==================================== */
                                                    /*COOKIES*/
                                                /* ==================================== */                                                   

                                             
  

                                                 /* ==================================== */
                                                /* ACCEDER A UNE SEULE ANNONCE */
                                                  /* ==================================== */                                             
  
.containerAnnonceFlex {
  align-items: flex-start; /* Alignement en haut entre les 2 colonnes */
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 80px auto 40px;
  padding: 0 20px;
  gap: 40px;
}
.annonceGauche {
  flex: 1 1 60%;
  background-color: #ffffff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
  text-align: left; /* Aligne tout le texte à gauche */
}

.titreAnnonce {
  font-size: 30px;
  margin-bottom: 25px;
  font-weight: bold;
  text-align: left; /* Titre à gauche */
}







.visuelAnnonce {
  width: 100%;
  border-radius: 30px;
  object-fit: cover;
  margin-bottom: 30px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.description-bloc, .details-bloc {
  margin-bottom: 25px;
}

.description-bloc h3,
.details-bloc h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.description-bloc p,
.details-bloc p {
  font-size: 16px;
  color: #444;
  line-height: 1.5;
}
.roles-bloc, .remuneration-bloc {
  margin-bottom: 25px;
}

.roles-bloc h3, .remuneration-bloc h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.roles-bloc p, .remuneration-bloc p {
  font-size: 16px;
  color: #444;
  line-height: 1.5;
}


.annonceDroite {
  margin-top: 10px;
  flex: 1 1 35%;
  display: flex;
  justify-content: center;
  align-items: center; /* ← CENTRAGE vertical du contenu dans la colonne */
}

.carteProfil {
  background: #f7f7f7;
  padding: 25px 20px;
  border-radius: 16px;
  text-align: center;
  width: 100%;
  max-width: 300px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05); /* ombre plus douce */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px; /* espace entre les éléments */
}


.profilImage {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 10px;
  border: 3px solid #1A702D;
}

.carteProfil h2 {
  font-size: 20px;
  margin-bottom: 5px;
}

.carteProfil p {
  font-size: 14px;
  color: #555;
  margin-bottom: 12px;
}

.btnContact {
  background-color: #1A702D;
  color: white;
  padding: 8px 18px;
  font-size: 14px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btnContact:hover {
  background-color: #145A23;
}

.actionsAnnonce {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 40px auto;
}

.btnAction {
  background-color: #1A702D;
  color: white;
  padding: 12px 24px;
  font-size: 16px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btnSupprimer {
  background-color: #FF0000;
  color: white;
  padding: 12px 24px;
  font-size: 16px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;

}
.btnSupprimer:hover {
  background-color: #CC0000;
  transform: translateY(-2px);
}

.btnAction:hover {
  background-color: #145A23;
  transform: translateY(-2px);
}

.btnSecondaire {
  background-color: transparent;
  color: #1A702D;
  border: 2px solid #1A702D;
}

.btnSecondaire:hover {
  background-color: #1A702D;
  color: white;
}


                                                 /* ==================================== */
                                                 /* ACCEDER A UNE SEULE ANNONCES */
                                                /* ==================================== */                                                
  
  
  
                                                 /* ==================================== */
                                                  /*chosiri LES ABONNEMENT */
                                                /* ==================================== */                                                 

.containerabonnementchoisir {
 display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 1000px;
  height: 640px;
  margin: 20px auto;
  background: white;
  padding: 0px;
}


.containerabonnementchoisir h2 {
  font-size: 20px;
  margin-bottom: 30px;
  margin-top: 0px;
  text-align: center;
}

.containerabonnementchoisir h1 {
    font-size: 19px;
  margin-bottom: 30px;
  margin-top: 0px;
  text-align: center;
  font-weight: normal;
}



.containerabonnementchoisir .plans {
display: flex;
justify-content: space-between;
gap: 20px;
margin-top: 10px;
flex-grow: 1; /* Cela permet de pousser le bouton vers le bas */
}

.containerabonnementchoisir .plan {
   background: #f7fff8;
  border-radius: 10px;
  border: 2px solid rgb(69, 128, 69);
  padding: 45px;
  height: 500px;
  width: 90%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.containerabonnementchoisir .plan:hover {
  border-color: rgb(7, 241, 7);
  box-shadow: 0 0 10px rgba(0, 123, 255, 0.3);
}

.containerabonnementchoisir .plan:has(input[type="radio"]:checked) {
  border-color:  rgb(7, 241, 7);
  background: #dff9e2;
  box-shadow: 0 0 10px rgba(46, 204, 113, 0.4);
}

.containerabonnementchoisir .plan input[type="radio"] {
  display: none;
}



                                                /* ==================================== */
                                                   /* chosir LES ABONNEMENT */   
                                                /* ==================================== */


                                                 /* ==================================== */
                                                   /* consuluter un abonnement */   
                                                /* ==================================== */


.containerabonnementconsulter {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 1000px;
  height: 640px;
  margin: 20px auto;
  background: white;
  padding: 0px;
}

.containerabonnementconsulter .plans {
display: flex;
justify-content: space-between;
gap: 20px;
margin-top: 10px;
flex-grow: 1; /* Cela permet de pousser le bouton vers le bas */
}

.containerabonnementconsulter .plan {
  background: #f7fff8;
  border-radius: 10px;
  border: 2px solid rgb(69, 128, 69);
  padding: 25px;
  height: 500px;
  width: 32%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.containerabonnementconsulter h1 {
  font-size: 19px;
  margin-bottom: 30px;
  margin-top: 0px;
  text-align: center;
  font-weight: normal;
}
.containerabonnementconsulter h2 {
  font-size: 20px;
  margin-bottom: 30px;
  margin-top: 0px;
  text-align: center;
  
}

.plan h2 {
  color: #444;
  margin-bottom: 15px;
  font-size: 16px;
}
.price p {
  margin-bottom: 15px;
  font-size: 22px;
  text-align: center;
}
.plan ul {
  list-style-type: circle;
  padding: 0;
  text-align: left;
}
.plan ul li {
  margin: 15px 0;
  font-size: 16px;
  text-align: left;
}
.price {
  font-size: 22px;
  font-weight: bold;
  margin: 15px 0;
  text-align: center;
}
/* rendre responsive tarification */

@media screen and (max-width: 992px) {
  .containerabonnementconsulter .plans {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .containerabonnementconsulter .plan {
    width: 90%;
    height: auto;
  }

  .containerabonnementconsulter {
    height: auto;
    padding: 20px;
  }
}


@media screen and (max-width: 992px) {
  .containerabonnementchoisir .plans {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .containerabonnementchoisir .plan {
    width: 90%;
    height: auto;
  }

  .containerabonnementchoisir {
    height: auto;
    padding: 20px;
  }
}


/* rendre responsive tarification */

                                                
                                                /* ==================================== */
                                                   /* consulter un ABONNEMENT */   
                                                /* ==================================== */



                                               /* ==================================== */                                                   
                                                   /* POSTER UNE ANNONCE */  
                                                /* ==================================== */                                                  
/* Barre étapes pour poster une annonce */
.progress-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 120px;
  margin-top: -15px;
  margin-bottom: 40px;

}

.progress-step {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 16px;
  font-weight: bold;
  color: #aaa;
}

.progress-step span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: #ccc;
  color: white;
  font-size: 14px;
}

.progress-step.active span {
  background-color: #1a6f2d;
}

.progress-step.active {
  color: black;
}

.progress-separator {
  font-size: 17px;
  color: #aaa;
  margin: 0 10px;
}


/* Barre étapes pour poster une annonce */
/* formulaire */


/* box qui contient le formulaire */
.containerposter {
  background: white;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

/* Style des groupes de formulaires */
.form-group,
.form-group2 {
  display: flex;
  flex-direction: column; /* Les éléments sont maintenant empilés verticalement */
  align-items: flex-start; /* Alignement à gauche */
  margin-bottom: 25px;
}

.form-group label
.form-group2 label {
  font-weight: bold;
  color: rgb(0, 0, 0);
  font-size: 16px;
  margin-bottom: 5px;
  display: block;
}

.form-group small
.form-group2 small {
  display: flex;
  display: block;
  font-size: 14px;
  color: #666;
  margin-top: 3px;
  margin-bottom: 5px;
}

.form-group input,
.form-group select,
.form-group textarea,
.form-group2 input,
.form-group2 select,
.form-group2 textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
  box-sizing: border-box;
}

.form-group textarea {
  height: 100px;
}
.form-group2 textarea {
  height: 100px;
}
.highlight2 {
  font-weight: bold;
  color: red; 
}

.form-group input[type="number"] {
  width: auto;
  max-height: 30px;
  max-width: 50px;
}
.form-group2 input[type="number"] {
  width: auto;
  max-height: 30px;
  max-width: 200px;
}

.file-input {
  display: flex;
  flex-direction: column;
  margin-top: 10px;
}

.file-input input {
  margin-top: 8px;
  padding: 8px;
}

.submit-btn {
  width: 100%;
  padding: 15px;
  background-color: #000;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  margin-top: 20px;
  transition: background-color 0.3s ease;
}

.submit-btn:hover {
  background-color: #333;
}

.submit-btn:focus {
  outline: none;
}

/* Formulaire responsive*/

@media (max-width: 768px) {
  .containerposter {
    padding: 20px;
    margin: 10px;
    box-shadow: none;
    border-radius: 0;
  }

  .form-group,
  .form-group2 {
    width: 100%;
  }

  .form-group input,
  .form-group select,
  .form-group textarea,
  .form-group2 input,
  .form-group2 select,
  .form-group2 textarea {
    font-size: 16px;
    padding: 12px;
  }

  .form-group input[type="number"],
  .form-group2 input[type="number"] {
    max-width: 100%;
  }

  .submit-btn {
    font-size: 18px;
    padding: 15px;
    width: 100%;
  }

  .progress-container {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }

  .progress-step, .progress-separator {
    font-size: 14px;
  }
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #28a745;
  box-shadow: 0 0 5px rgba(40, 167, 69, 0.5);
}

.form-group input,
.form-group select,
.form-group textarea {
  background-color: #f9f9f9;
}

/* formulaire */


/* choix abonnement */
.texte-choix-abonnement  {
  font-size: 18px;
  margin-bottom: 30px;
  margin-top: 0px;
  text-align: center;
  font-weight: normal;
}
/* choix abonnement */

/* Apercu avant de publier */
.container-aperçu {
  width: 70%;
  margin: 20px auto;
  padding: 20px;
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
  
}

.container-aperçu h2 {
  font-size: 20px;
  color: #333;
  margin-bottom: 15px;
}

.container-aperçu h3 {
  font-size: 18px;
  color: #3f3d3d;
  margin-bottom: 20px;
}

.container-aperçu p {
  font-size: 16px;
  color: #555;
  line-height: 1.5;
  margin: 10px 0;
  display: flex;
  flex-direction: column; /* Les éléments sont maintenant empilés verticalement */
  align-items: flex-start; /* Alignement à gauche */
}

.container-aperçu p strong {
  color: #222;
}

.container-aperçu p:last-child {
  font-weight: bold;
  color: #008000;
}
/* Apercu avant de publier */

/* Boutons suivant et publier pour poster une annonce */  
.back-btn {
display: inline-block;
padding: 8px 16px;
font-size: 14px;
color: #000;
background-color: transparent;
border: 2px solid #000;
border-radius: 5px;
text-decoration: none;
text-align: center;
cursor: pointer;
transition: background-color 0.3s ease, color 0.3s ease;
margin-top: -47.5px;
margin-right: 720px;
}

.back-btn:hover {
background-color: #000;
color: #fff;
}

.next-btn {
display: inline-block;
padding: 10px 20px;
font-size: 16px;
color: #fff;
background-color: #28a745;
border: none;
border-radius: 5px;
text-align: center;
cursor: pointer; 
transition: background-color 0.3s ease;
margin-left: 700px;
}

.next-btn:hover {
background-color: #218838;
}

  /* Boutons suivant et publier abbonement pour poster une annonce */  

.back-btn2 {
  padding: 8px 16px;
  font-size: 14px;
  color: #000;
  background-color: transparent;
  border: 2px solid #000;
  border-radius: 5px;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  margin-right: 820px;
  margin-top: -70.5px;
  }
  
  .back-btn2:hover {
  background-color: #000;
  color: #fff;
  }
  
  .next-btn2 {
  
  padding: 10px 20px;
  font-size: 16px;
  color: #fff;
  background-color: #28a745;
  border: none;
  border-radius: 5px;
  text-align: center;
  cursor: pointer; 
  transition: background-color 0.3s ease;
  margin-left: 800px;
  margin-top: -48.5px;
  }
  
  .next-btn2:hover {
  background-color: #218838;
  }
  

.navigation-buttons {
display: flex;
flex-direction: column;
align-items: center;
gap: 10px;
}

/* Responsive */
@media screen and (max-width: 992px) {
  .next-btn,
  .back-btn,
  .next-btn2,
  .back-btn2 {
    display: block;
    margin: 20px auto;
    text-align: center;
    width: 100%;
    max-width: 300px;
    font-size: 16px;
  }

  .back-btn2 {
    margin-top: 20px;
    margin-bottom: 10px;
  }

  .next-btn2 {
    margin-top: 10px;
  }
}
/* Boutons suivant et publier pour poster une annonce */  
                            

                                /* ==================================== */
                                  /* POSTER UNE ANNONCE */ 
                                  /* ==================================== */                                                                                         
  


                                  /* ==================================== */
                                  /*  BARRE DE NAVIGATION SECONDAIRE DE L'ESPACE PROJET*/
                                  /* ==================================== */

/* Barre des menus secondaire */
.sub-navbar {
  display: flex;
  justify-content: center;
  padding: 10px 0;
  background: white;
  border-bottom: 2px solid #ddd;
  width: 130%;
}

.sub-navbar ul {
  display: flex;
  list-style: none;
  gap: 60px;
}

.sub-navbar li a {
  text-decoration: none;
  color: black;
  font-weight: bold;
  padding: 10px;
}

.sub-navbar li a:hover {
  color: green;
}

.sub-navbar li a.active {
  color: green;
  border-bottom: 3px solid green;
}
                                              /* ==================================== */
                                              /*  BARRE DE NAVIGATION SECONDAIRE DE L'ESPACE PROJET*/
                                              /* ==================================== */

/* ==================================== */
/*  BARRE DE NAVIGATION outils */
/* ==================================== */

/* Barre des menus secondaire */
.sub-navbar-outils {
    display: flex;
    justify-content: center;
    padding: 10px 0;
    background: white;
    border-bottom: 2px solid #ddd;
}

.sub-navbar-outils ul {
    display: flex;
    list-style: none;
    gap: 60px;
}

.sub-navbar-outils li a {
    text-decoration: none;
    color: black;
    font-weight: bold;
    padding: 10px;
}

.sub-navbar-outils li a:hover {
    color: green;
}

.sub-navbar-outils li a.active {
    color: green;
    border-bottom: 3px solid green;
}

/* ==================================== */
/*  BARRE DE NAVIGATION outils */
/* ==================================== */

/* ==================================== */
/*  Page contact */
/* ==================================== */

/***** === Page Contact === *****/

.contact-page {
  padding: 20px 20px;
 

}

.map-contact {
  margin-bottom: 40px;
  width: 100vw;
  max-width: 67%;
  margin-left: 280px;
  
}

.map-contact iframe {
  width: 100%;
  height: 450px;
  border: 0;
  border-radius: 10px;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: flex-start;
}

.form-section {
  flex: 1 1 500px;
}

.form-section h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1e7a1e;
}

.form-section form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-section input,
.form-section textarea {
  padding: 14px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 16px;
  width: 100%;
  box-sizing: border-box;
}

.form-section button {
  background-color: #1e7a1e;
  color: white;
  padding: 14px;
  font-weight: 600;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.form-section button:hover {
  background-color: #145214;
}

.info-section {
  margin-top: 100px;
  flex: 1 1 400px;
  background-color: #f8f8f8;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.info-section h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 25px;
  color: #1e7a1e;
}

.info-section p {
  font-size: 16px;
  color: #333;
  margin-bottom: 18px;
  line-height: 1.6;
}

.info-section i {
  color: #1e7a1e;
  margin-right: 8px;
}


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


@media screen and (max-width: 992px) {
  .contact-container {
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding: 0 20px;
  }

  .form-section,
  .info-section {
    width: 100%;
    max-width: 500px;
  }

  .info-section {
    margin-top: 0;
  }

  .map-contact {
    max-width: 100%;
    margin: 0 auto 30px auto;
    padding: 0 20px;
  }

  .map-contact iframe {
    height: 300px;
  }
}

@media screen and (max-width: 480px) {
  .form-section h2,
  .info-section h3 {
    font-size: 22px;
    text-align: center;
  }

  .form-section form,
  .info-section {
    padding: 0 10px;
  }

  .info-section p {
    font-size: 15px;
    text-align: center;
  }

  .form-section input,
  .form-section textarea {
    font-size: 15px;
  }

  .form-section button {
    font-size: 15px;
  }
}
/***** === Responsive === *****/

                                         /* ==================================== */
                                                  /*  PAGE CONTACT */
                                        /* ==================================== */



                                              /* ==================================== */
                                              /*  BARRE DE NAVIGATION  POUR LES OUTILS COLLABORATIS */
                                              /* ==================================== */  

/* Barre des outils collaboratifs */
.sub-navbar-outils {
  display: flex;
  justify-content: center;
  padding: 10px 0;
  background: white;
  border-bottom: 2px solid #ddd;
  width: 130%;
}

.sub-navbar-outils ul {
  display: flex;
  list-style: none;
  gap: 60px;
}

.sub-navbar-outils li a {
  text-decoration: none;
  color: black;
  font-weight: bold;
  padding: 10px;
}

.sub-navbar-outils li a:hover {
  color: green;
}

.sub-navbar-outils li a.active {
  color: green;
  border-bottom: 3px solid green;
}                                         

                                              /* ==================================== */
                                              /*  BARRE DE NAVIGATION  POUR LES OUTILS COLLABORATIS */
                                              /* ==================================== */  


                                               /* ==================================== */
                                              /*  MESSAGERIE */
                                              /* ==================================== */  
#messagerie-modal {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 270px;
  background: #f5f5f5;
  border-left: 1px solid #ccc;
  border-radius: 8px 0 0 8px;
  padding: 10px;
  box-shadow: -4px 0 10px rgba(0,0,0,0.1);
  z-index: 9999;
  font-family: Arial, sans-serif;
  max-height: 90vh;
  overflow-y: auto;
}

.contact-card {
  background-color: #c8e6c9;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  cursor: pointer;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.contact-card:hover {
  background-color: #a5d6a7;
}

.contact-card i {
  margin-right: 10px;
  font-size: 18px;
}

.contact-name {
  font-size: 14px;
  font-weight: bold;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1;
}

.active-contact {
  background-color: #81c784 !important;
  border: 2px solid #388e3c;
}

#new-message-btn {
  background-color: #dcdcdc;
  border-radius: 4px;
  padding: 10px;
  text-align: center;
  font-size: 14px;
  margin-bottom: 15px;
  cursor: pointer;
  font-weight: bold;
}

#new-message-form {
  display: none;
  margin-bottom: 15px;
}

#new-message-form input,
#new-message-form textarea {
  width: 100%;
  margin-bottom: 5px;
  padding: 6px;
}
.message-floating-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #007bff;
  color: white;
  padding: 15px;
  border-radius: 50%;
  text-align: center;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  z-index: 9999;
}

                                                  /* ==================================== */
                                              /*  MESSAGERIE */
                                              /* ==================================== */  
#chatHeader {
    cursor: move;
}
