body{
    overflow-x: hidden;
}

section {
    margin-top: 7%;
}

h1.section-title {
    text-align: center;
    font-size: 38px;
    background: linear-gradient(90deg, #0A58A5 -9.21%, #16202C 123.02%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 5%;
    font-weight: 500;
}

.presentation{
    width: 40%;
    margin: 150px auto;
}

.presentation h1{
    line-height: 84px; 
    background: linear-gradient(121deg, #0A58A5 30.49%, #F90 94.13%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 34px;
    font-weight: 600;
    line-height: 39px;
}

.presentation p{
    color: #4C5A6F;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px; /* 162.5% */
    margin-top: 27px;
}

.presentation video{
    margin-top: 53px;
    border-radius: 20px;
    margin-bottom: 36px;
    width: 100%;
}

.presentation a{
    border-radius: var(--arrondi, 20px);
    background: #0A58A5;
    width: 100%;
    display: flex;
    height: 51px;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.chat-container {
    margin: 130px auto;
    width: 50%;
    overflow: scroll;
    position: relative;
}

.chat-left{
    display: flex;
    flex-direction: row-reverse;
    align-items: start;
    margin: 37px 0;
    gap: 15px;
    position: relative;
}

.chat-left .text{
    border-radius: var(--arrondi, 20px);
    border: 1px solid #DFE5EC;
    background: #F4F7F9;
    padding: 20px 30px;
    line-height: 28px; /* 175% */
    color: #4C5A6F;
    max-width: 82%;
}

.chat-left .avatar{
    width: 30px;
    height: 30px;
    border-radius: 100%;
}

.edit-icon {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.chat-left:hover .edit-icon {
    opacity: 1;
}

.edit-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    transition: background-color 0.3s ease, visibility 0.3s ease;
}

.edit-modal.show {
    visibility: visible;
    background-color: rgba(0, 0, 0, 0.5);
}

.edit-modal-content {
    background: white;
    padding: 0 30px 30px 30px;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.edit-modal.show .edit-modal-content {
    transform: translateY(0);
    opacity: 1;
}

/* Ajout de l'animation de fermeture */
.edit-modal.closing {
    background-color: rgba(0, 0, 0, 0);
}

.edit-modal.closing .edit-modal-content {
    transform: translateY(20px);
    opacity: 0;
}

.edit-modal-content textarea {
    width: 100%;
    font-size: 16px;
    border: 1px solid #DAE5EF;
    border-radius: 20px;
    min-height: 150px;
    padding: 1rem;
    background-color: #F4F7F9;
    line-height: 24px;
    margin-bottom: 40px;
}

.edit-modal-content textarea:focus {
    outline: none;
}

.edit-modal-content h3{
    color: #4C5A6F;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    margin-bottom: 20px;
    padding-top: 90px;
}

.modal-header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    margin-bottom: 20px;
    width: 100%;
}

.modal-header h5{
    font-size: 16px;
    font-weight: 600;
    line-height: 26px;
    color: #4C5A6F;
}

.edit-modal-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.edit-modal-buttons button {
    padding: 10px 20px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
}

.edit-modal-buttons .cancel {
    background: #F4F7F9;
    color: #4C5A6F;
}

.edit-modal-buttons .save {
    background: #0A58A5;
    color: white;
}

.projects{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 17px;
    grid-row-gap: 17px;
    margin-top: 50px;
}

.projects .project{
    border-radius: var(--arrondi, 20px);
    border: 1px solid #E3ECF3;
    padding: 25px;
    cursor: not-allowed;
}

.projects .project div{
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.projects .project div p{
    color: #4C5A6F;
    font-size: 14px;
    font-weight: 400;
    line-height: 26px;
}

.projects .project div p span{
    color: #0A58A5;
}

.quotes-container {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 40px 0;
}

.quotes {
  display: flex;
  align-items: center;
  gap: 23px;
  max-width: 80%;  /* Pour éviter que ça prenne toute la largeur */
}

.quote {
  text-align: center;
}

.quote h1 {
  color: #4C5A6F;
  font-size: 32px;
  font-weight: 400;
  line-height: 30px;
}

.quote p {
  margin-top: 40px;
  color: #4C5A6F;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
}

.zenadia{
    margin: 68px auto;
    display: flex;
    justify-content: center;
}

.chat-container .bot{
    display: flex;
    align-items: start;
    gap: 17px;
}

.chat-container .bot p{
    color: #4C5A6F;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px; /* 162.5% */
}

.bot-text{
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.bot-text h1{
    background: linear-gradient(90deg, #0A58A5 -9.21%, #16202C 123.02%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 34px;
    font-weight: 600;
    line-height: 34px; /* 70.588% */
}

.tarifs-content{
    width: 63%;
    margin: 91px auto;
}

.tarifs-content h1{
    text-align: center;
    line-height: 84px;
    font-size: 34px;
    font-weight: 600;
    line-height: 30px; /* 70.588% */
    background: linear-gradient(90deg, #0A58A5 -9.21%, #16202C 123.02%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tarifs-content p{
    border-radius: 10px;
    border: 1px solid rgba(255, 153, 0, 0.40);
    background: rgba(255, 153, 0, 0.10);
    width: fit-content;
    margin: 36px auto 78px auto;
    padding: 2px 17px;
    color: #4C5A6F;
    font-size: 12px;
    line-height: 36px;
}

.packs{
    display: flex;
    gap: 20px;
    justify-content: center;
}

.packs .pack{
    border-radius: var(--arrondi, 20px);
    border: 1.5px solid #DAE5EF;
    padding: 30px ;
    width: 33%;
}

.packs .pack h2{
    text-align: center;
    color: #4C5A6F;
    font-size: 14px;
    font-weight: 700;
    line-height: 22px; /* 157.143% */
}

.packs .pack h6{
    color: #0A58A5;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 22px; /* 68.75% */
    margin: 23px auto 35px auto;
    text-align: center;
}

.packs .pack a{
    border-radius: var(--arrondi, 20px);
    border: 1px solid #0A58A5;
    width: 100%;
    display: flex;
    height: 54px;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #0A58A5;
    font-weight: 600;
}

.advantages{
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.advantages div{
    display: flex;
    gap: 10px;
    align-items: center;
}

.advantages div span{
    color: #4C5A6F;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px; /* 142.857% */
}

.chat-container .choices{
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 37px;
}

.chat-container .choices .choice{
    width: 50%;
    border-radius: var(--arrondi, 20px);
    border: 1px solid #DFE5EC;
    background: #F4F7F9;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 119px;
    gap: 30px;
    padding: 34px 40px;
}

.chat-container .choices .choice p{
    color: #4C5A6F;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px; /* 150% */
}

.chat-container .choices a.choice:hover{
    border: 1px solid #0A58A5;
    background: #F4F7F9;
    text-decoration: none;
    transition: .5s;
}

.chat-container .choices .choice.active{
    border: 1px solid #0A58A5;
    background: rgba(10, 88, 165, 0.10);    
}

.chat-container .choices .choice.active p{
    color: #0A58A5;
    font-weight: 700;
    line-height: 24px; /* 150% */
}

.dropdown-el {
    display: inline-block;
}

.dropdown-el .dropdown-head {
    cursor: pointer;
    position: relative;
}

.current-selected {
    border-radius: 20px;
    background: #F4F7F9;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4C5A6F;
    font-size: 16px;
}

.dropdown-el .dropdown-body {
    position: relative;
}

.dropdown-body  {
    transition: opacity 0.3s ease-out;
    opacity: 0;
    display: none;
}
  
.dropdown-body.show {
    opacity: 1;
    display: block; 
}

.dropdown-body-inner {
    position: absolute;
    right: -28px;
    top: 33px;
    width: 170px;
    border-radius: 20px;
    background: #FFF;
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.10);
    padding: 22px 0;
}

.dropdown-item {
    cursor: pointer;
    transition: all .5s ease-in-out;
    background: white;
    display: flex;
    align-items: center;
    color: #4C5A6F;
    font-size: 16px;
    padding: 0 29px;
    justify-content: space-between;
}

.dropdown-item .lang{
    display: flex;
    align-items: center;
    gap: 18px;
}

.dropdown-item:last-child{
    margin-top: 27px;
}

/*---------------------------------banner---------------------------------*/

section.banner{
    padding-top: 90px;
    display: flex;
    align-items: end;
    flex-direction: row-reverse;
    justify-content: center;
    gap: 90px;
    position: relative;
    margin-top: 8%;  
    padding-bottom: 90px;
}

section.banner h1{
    text-align: center;
    font-size: 50px;
    line-height: 70px;
    background: linear-gradient(121deg, #0A58A5 30.49%, #F90 94.13%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

section.banner p{
    color: #4C5A6F;
    text-align: center;
    font-size: 16px;
    line-height: 34px;
}

.banner-bottom {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 35px;
    padding-bottom: 60px;
    width: 59%;
}


.banner img{
    position: absolute;
    left: 1%;
    width: 19%;
    height: 65%;
}

.banner-bottom form{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 36px;
    width: 100%;
}


.banner-bottom .link-button {
    text-align: center;
    padding: 17px;
    font-size: 16px;
}

.banner img {
    position: absolute;
    left: 1%;
    width: 19%;
    height: 65%;
    bottom: 0;
}

.link-button {
    width: 304px;
    height: 60px;
    background: linear-gradient(89.4deg, #0A58A5 -17.39%, #FF9900 167.71%);
    border-radius: 20px;
    border: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
}

section.demo {
    background: linear-gradient(156deg, #0A58A5 1.27%, #F90 87.58%);
    padding: 73px 248px;
    margin-top: 0;
}

section.demo p {
    text-align: center;
    color: #FFF;
    font-size: 24px;
    line-height: 46px;
}

section.demo img {
    width: 100%;
    margin-top: 50px;
    overflow-x: hidden;
}


/*---------------------------------functions---------------------------------*/

.functions .slider{
    margin: 0 125px;
    height: 400px;
}

span.swiper-pagination-bullet{
    height: 30px;
    width: 30px;
}

span.swiper-pagination-bullet.swiper-pagination-bullet-active{
    background-color: #0A58A5
}

.functions .slider .slides{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    display: none;
    transition: transform 0.5s ease-in-out;
}

.swiper-slide{
    display: flex !important;
    gap: 30px
}

.slide{
    border-radius: 25px;
    background: #FAFAFA;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 40px 20px;
    width: 33%;
    height: 300px;
}

.slide h3{
    font-size: 20px;
    text-align: center;
    color: #0A58A5;
}

.slide p{
    color: #4C5A6F;
    text-align: center;
    font-size: 16px;
    line-height: 26px; 
}

.slide img{
    width: 94px;
    height: 69px;
}

.nav-buttons{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 70px 0;
    gap: 17px;
}

.nav-buttons button{
    width: 27px;
    height: 27px;
    background-color: #EFEFEF;
    border-radius: 100%;
    border: none;
}

.w3-button.active{
    background-color: #0A58A5;
}

/*---------------------------------partners---------------------------------*/

.partner-list {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: center;
    padding: 0 100px;
}

.partnerbloc {
    border-radius: 20px;
    border: 1.5px solid #F6F6F6;
    height: 84px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.partnerbloc img{
    width: 115px
}

.marquee {
    display: flex;
    block-size: var(--marquee-item-height);
    margin-block: var(--marquee-item-height);
    position: relative;
    overflow-x: hidden;
    mask-image: linear-gradient(
      to right,
      hsl(0 0% 0% / 0),
      hsl(0 0% 0% / 1) 20%,
      hsl(0 0% 0% / 1) 80%,
      hsl(0 0% 0% / 0)
    );
  }
  
  .marquee--8 {
    --marquee-item-width: 100px;
    --marquee-item-height: 100px;
    --marquee-duration: 36s;
    --marquee-items: 8;
  }
  
  .marquee--3 {
    --marquee-item-width: 150px;
    --marquee-item-height: 150px;
    --marquee-duration: 24s;
    --marquee-items: 3;
  }
  
  .marquee--6 {
    --marquee-item-width: 166px;
    --marquee-item-height: 100px;
    --marquee-duration: 32s;
    --marquee-items: 6;
  }
  
  .marquee__item {
    --marquee-item-offset: max(
      calc(var(--marquee-item-width) * var(--marquee-items)),
      calc(100% + var(--marquee-item-width))
    );
    --marquee-delay: calc(var(--marquee-duration) / var(--marquee-items) * (var(--marquee-items) - var(--marquee-item-index)) * -1);
    position: absolute;
    inset-inline-start: var(--marquee-item-offset);
    transform: translateX(-50%);
    animation: go linear var(--marquee-duration) var(--marquee-delay, 0s) infinite;
  }
  
  .marquee__item:nth-child(4n) {
    border-top-right-radius: 1rem;
  }
  
  .marquee__item:nth-child(4n + 1) {
    border-bottom-right-radius: 1rem;
  }
  
  .marquee__item:nth-child(4n + 2) {
    border-bottom-left-radius: 1rem;
  }
  
  .marquee__item:nth-child(4n + 3) {
    border-top-left-radius: 1rem;
  }
  
  .marquee--8 .marquee__item:nth-of-type(1) {
    --marquee-item-index: 1;
  }
  
  .marquee--8 .marquee__item:nth-of-type(2) {
    --marquee-item-index: 2;
  }
  
  .marquee--8 .marquee__item:nth-of-type(3) {
    --marquee-item-index: 3;
  }
  
  .marquee--8 .marquee__item:nth-of-type(4) {
    --marquee-item-index: 4;
  }
  
  .marquee--8 .marquee__item:nth-of-type(5) {
    --marquee-item-index: 5;
  }
  
  .marquee--8 .marquee__item:nth-of-type(6) {
    --marquee-item-index: 6;
  }
  
  .marquee--8 .marquee__item:nth-of-type(7) {
    --marquee-item-index: 7;
  }
  
  .marquee--8 .marquee__item:nth-of-type(8) {
    --marquee-item-index: 8;
  }
  
  .marquee--3 .marquee__item:nth-of-type(1) {
    --marquee-item-index: 1;
  }
  
  .marquee--3 .marquee__item:nth-of-type(2) {
    --marquee-item-index: 2;
  }
  
  .marquee--3 .marquee__item:nth-of-type(3) {
    --marquee-item-index: 3;
  }
  
  .marquee--6 .marquee__item:nth-of-type(1) {
    --marquee-item-index: 1;
  }
  
  .marquee--6 .marquee__item:nth-of-type(2) {
    --marquee-item-index: 2;
  }
  
  .marquee--6 .marquee__item:nth-of-type(3) {
    --marquee-item-index: 3;
  }
  
  .marquee--6 .marquee__item:nth-of-type(4) {
    --marquee-item-index: 4;
  }
  
  .marquee--6 .marquee__item:nth-of-type(5) {
    --marquee-item-index: 5;
  }
  
  .marquee--6 .marquee__item:nth-of-type(6) {
    --marquee-item-index: 6;
  }
  
  @keyframes go {
    to {  
      inset-inline-start: calc(var(--marquee-item-width) * -1);
    }
  }

/*---------------------------------fiche---------------------------------*/

section.fiche {
    height: 600px;
    position: relative;
    background: #FAFAFA;
    padding-top: 2rem;
}

.showing {
    display: flex;
    gap: 100px;
    padding: 0 130px;
    height: 500px;
}

.showing .text {
    width: 300px;
}

.showing p {
    color: #4C5A6F;
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 2rem;
}

.showing a {
    border-radius: 20px;
    border: 1.5px solid #0A58A5;
    color: #0A58A5;
    font-size: 16px;
    padding: 20px 40px;
    margin-top: 70px;
}

.showing img {
    position: absolute;
    bottom: 0;
    right: 5%;
    height: 500px;
}

/*---------------------------------structures---------------------------------*/

section.structures {
    padding: 6% 4%;
    position: relative;
    z-index: 999;
    margin-top: 105px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 0;
}

.tabbedContent {
    display: flex;
    gap: 87px;
    align-items: center;
    height: 500px;
}

section.structures .onglets {
    display: flex;
    flex-direction: column;
    gap: 2;
    color: #4C5A6F;
    font-size: 16px;
    width: 100%;
}

section.structures .onglets .onglet.active {
    border-radius: 16px;
    background: #EEF3F8;
}

section.structures .onglets .onglet {
    padding: 2rem 3.5rem;
    cursor: pointer;
}

.tab-content.active {
    display: block;
}

.tab-content {
    display: none;
    border-radius: 20px;
    background: #FFF;
    box-shadow: 0px 0px 12px 0px rgba(76, 90, 111, 0.10);
    padding: 3.5rem;
    width: 100%;
    height: fit-content;
}

.tab-content p {
    color: #4C5A6E;
    font-size: 1rem;
    margin-top: 2rem;
    line-height: 26px;
}

section.structures a {
    width: 431px;
    height: 66px;
    border-radius: 20px;
    background: linear-gradient(141deg, #0A58A5 0%, #F90 100%);
    color: #fff;
    font-size: 18px;
    border: none;
    margin-top: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/*---------------------------------users---------------------------------*/

.users {
    padding: 50px 60px;
    background: #FAFAFA;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    justify-content: center;
}

.users h1 {
    text-align: center;
    color: #4C5A6F;
    font-size: 28px;
}

.usercards {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.usercard {
    border-radius: 20px;
    background: #FFF;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.05);
    padding: 20px 30px;
}

.usercard .head {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.usercard .head .name {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #4C5A6F;
}

.usercard .head .name h2{
    font-size: 18px;
}

.usercard .head .name span{
    font-size: 12px;
}

.usercard p {
    margin-top: 30px;
    color: #4C5A6F;
    font-size: 16px;
    line-height: 26px;
}

.usercard.middle {
    margin-top: 100px;
}

/*---------------------------------temoignages---------------------------------*/

section.temoignages {
    padding: 0 140px;
}

.testimonies {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
}

.testimonies .card {
    border-radius: 25px;
    background: #F4F7F9;
    width: 100%;
    padding: 60px 57px;
    min-height: 400px;
}

.testimonies .card p {
    color: #4C5A6F;
    font-size: 20px;
    line-height: 30px;
    text-align: center;
}

.testimonies .card .user-details {
    display: flex;
    gap: 39px;
    align-items: center;
    margin-top: 56px;
    justify-content: center;
}

.testimonies .card img {
    width: 80px;
    height: 80px;
    border-radius: 100%;
    object-fit: cover;
    object-position: top;
}

.user-details h5 {
    background: linear-gradient(127deg, #0A58A5 12.00%, #F90 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 24px;
}

.user-details span {
    color: #4C5A6F;
    font-size: 14px;
}

/*---------------------------------contacts---------------------------------*/

section.question form {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 18px;
}

section.question form input {
    border-radius: 20px;
    border: 1px solid #D8E8F8;
    background: #F4F7F9;
    width: 545px;
    height: 60px;
    padding: 1rem;
    font-size: 16px;
}

section.question form textarea {
    width: 545px;
    height: 209px;
    border-radius: 20px;
    border: 1px solid #D8E8F8;
    background: #F4F7F9;
    padding: 1rem;
    font-size: 16px;
}

section.question form button {
    width: 188px;
    height: 60px;
    border-radius: 20px;
    background: #0A58A5;
    color: #fff;
    font-size: 18px;
    border: none;
}

/*---------------------------------essai---------------------------------*/

section.essai {
    border-radius: 40px;
    background: linear-gradient(140deg, #0A58A5 0%, #F90 98.73%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 75px;
    color: #fff;
    padding: 113px 0;
    margin-right: 38px;
    margin-left: 38px;
}

section.essai h1 {
    font-size: 50px;
}

section.essai p {
    font-size: 24px;
}

section.essai a {
    border-radius: 20px;
    background: #0A58A5;
    width: 331px;
    padding: 19px 39px;
    color: #fff;
    font-size: 18px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

/*---------------------------------footer---------------------------------*/

footer {
    margin-top: 100px;
    padding: 40px 39px;
}

footer .top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

footer .top img {
    width: 322px;
    height: 75.16px;
}

footer .top nav .nav-links {
    display: flex;
    gap: 56px;
    align-items: center;
}

footer .top nav .nav-links a {
    font-size: 16px;
    color: #0A58A5;
}

footer .bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 70px;
}

footer .bottom p {
    font-size: 14px;
    color: #4C5A6F;
}

footer .bottom .followus {
    display: flex;
    align-items: center;
    gap: 15px;
}

footer .bottom p {
    font-size: 14px;
    color: #4C5A6F;
}

.scroll-up-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

.mobile-slider{
    display: none !important
}

.mobile-nav{
    display: none;
}

/***---------------------------------tarif--------------------------------*/

.join .section-title {
    margin-top: 50px;
}

.join {
    margin: 87px 20%;
}

.join p {
    color: #4C5A6F;
    font-size: 16px;
    line-height: 26px;
}

.join h2 {
    margin-top: 52px;
    background: linear-gradient(90deg, #0A58A5 -9.21%, #16202C 123.02%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 28px;
    font-weight: 500;
}

.join ul {
    margin-top: 2rem;
    color: #4C5A6F;
    font-size: 16px;
    line-height: 26px;
    margin-left: 1rem;
}

.utilisateurs {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 748px;
    height: 70px;
    border-radius: 20px;
    background: #F5F7F9;
    padding: 3px;
    margin: 0 auto;
}

.utilisateurs .utilisateur {
    width: 50%;
    text-align: center;
    color: #4C5A6F;
    font-size: 16px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.utilisateurs .utilisateur.active {
    background-color: #fff;
    border-radius: 18px;
    color: #0A58A5;
}

.user-content.active {
    display: block;
    padding: 0 100px;
}

.user-content {
    display: none;
}

.join form {
    margin-top: 83px;
    width: 70%;
    margin: 83px auto;
}


.join form .group {
    margin-top: 18px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
form .group label {
    color: #4C5A6F;
    font-size: 12px;
}

.join form input {
    height: 50px;
    width: 100%;
    border-radius: 20px;
    border: 1px solid #D8E8F8;
    background: #F4F7F9;
    padding: 1rem;
}

form textarea {
    height: 208px;
    border-radius: 20px;
    border: 1px solid #D8E8F8;
    background: #F4F7F9;
    margin-top: 43px;
    padding: 1rem;
    font-size: 18px;
    margin-top: 0;
}

.labelcv {
    margin-top: 1rem;
    border-radius: 20px;
    background: #F4F7F9;
    width: 253px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4C5A6F;
    font-size: 16px;
}

label.cv input {
    display: none;
}

.join .submit {
    display: flex;
    justify-content: center;
}

.join form button {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border-radius: 20px;
    background: #0A58A5;
    font: 16px;
    width: 180px;
    height: 50px;
    margin: 32px auto;
    border: none;
    color: #fff;
}

section.banner{
    padding-top: 91px;
    padding-bottom: 0;
}

section.banner h1{
    font-weight: 500;
}

.devise {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.devise .form-group label {
    color: #4c5a6f74;
    font-size: 16px;
}

.devise .form-group {
    display: flex;
    gap: 20px;
    align-items: center;
    position: relative;
}

.devise .form-group input {
    width: 199px;
    height: 50px;
    border-radius: 20px;
    background: #F5F7F9;
    border: none;
    text-align: center;
    color: #4C5A6F;
    font-size: 16px;
    cursor: pointer;
}

.price-options {
    display: none;
}
  

.price-options.show {
    display: flex;
    border-radius: 20px;
    background: #FFF;
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.15);
    padding: 34px 50px;
    margin-top: 10px;
    list-style: none;
    flex-direction: column;
    gap: 40px;
    width: 200px;
    position: absolute;
    top: 100%;
    right: 0;
}

.price-options li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.prin {
    margin: 0 4rem;
}

.tarif-body {
    display: flex;
    width: 100%;
}

.tarif-body {
    display: flex;
    width: 100%;
}

.tarif-body .left {
    width: 65%;
    border-right: 1.5px solid rgba(218, 229, 239, 0.60);
    padding-right: 20px;
}

.tarifs {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.tarif {
    border-radius: 20px;
    border: 1.5px solid #DAE5EF;
    padding: 20px;
    width: 33%;
    cursor: pointer;
    height: 260px;
}

.tarif .head {
    border-radius: 10px;
    background: rgba(10, 88, 165, 0.05);
    color: #0A58A5;
    font-size: 12px;
    padding: 7px 20px;
    width: fit-content;
}

.tarif h1 {
    color: #0A58A5;
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 20px;
}

.tarif span {
    color: #4C5A6F;
    font-size: 16px;
}

.tarif p {
    color: #4C5A6F;
    font-size: 12px;
    margin-top: 14px;
}

.simulateur {
    border-radius: 20px;
    background: #F4F7F9;
    padding: 25px 35px;
    margin-top: 25px;
}

.simulateur h1 {
    color: #4C5A6F;
    font-size: 14px;
}

.simulateur p {
    color: rgba(76, 90, 111, 0.50);
    font-size: 16px;
    margin-top: 5px;
    margin-bottom: 30px;
}

input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    cursor: pointer;
    outline: none;
    border-radius: 20px;
    height: 14px;
    background: #ccc;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none; 
    height: 30px;
    width: 30px;
    background-color: #0A58A5;
    border-radius: 50%;
    border: none;
    transition: .2s ease-in-out;
  }
  
  input[type="range"]::-moz-range-thumb {
    height: 15px;
    width: 15px;
    background-color: rgba(10, 88, 165, 0.30);
    border-radius: 50%;
    border: none;
    transition: .2s ease-in-out;
  }

.boutons a.google {
    height: 54px;
    font-size: 16px;
    border-radius: 20px;
    border: none;
    border-radius: 20px;
    background: #F4F7F9;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    color: #4C5A6F;
}

.redirect {
    margin-top: 38px;
    display: flex;
    align-items: center;
    gap: 2rem;
    justify-content: center;
}

.redirect a {
    font-size: 16px;
    color: #4C5A6F;
}

.redirect a:last-child {
    color: #0A58A5;
}

.values {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 60px;
}

.valuevalue {
    color: #4C5A6F;
    font-size: 16px;
}

.value {
    color: #4C5A6F;
    font-size: 16px;
}

.values .total {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tot {
    color: rgba(76, 90, 111, 0.40);
    font-size: 16px;
}

.values .total h2 {
    color: #0A58A5;
    display: flex;
    gap: 10px;
    font-size: 26px;
}

.tarif-body .right {
    width: 35%;
    margin: 0 20px;
}

form.tarif-form {
    border-radius: 20px;
    border: 1.5px solid #DAE5EF;
    padding: 30px 40px;
}

form.tarif-form h1 {
    text-align: center;
    color: #4C5A6F;
    font-size: 18px;
}

form.tarif-form .profile{
    display: flex;
    align-items: center;
    gap: 20px;
}

.tarif-form .profile h2 {
    color: #0A58A5;
    font-size: 16px;
}

.tarif-form .profile p {
    color: #0A58A5;
    font-size: 12px;
}

.tarif-form .payment{
    margin: 2rem 0;
}

button.charge {
    border-radius: 20px;
    background: #0A58A5;
    color: #FFF;
    font-size: 16px;
    width: 100%;
    border: none;
    height: 54px;
    cursor: pointer;
}

.tarif-form .profile p span {
    color: #F90;
}

form.tarif-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin-top: 30px;
}

form.tarif-form .form-group label {
    color: rgba(10, 88, 165, 0.40);
    font-size: 12px;
}

form.tarif-form .form-group input {
    border-radius: 20px;
    border: 1px solid #D8E8F8;
    background: #F4F7F9;
    height: 54px;
    padding: 1rem;
}

.boutons {
    display: flex;
    flex-direction: column;
    gap: 35px;
    margin-top: 32px;
}

.boutons button.submit {
    background: #0A58A5;
    color: #fff;
}

.boutons button {
    height: 54px;
    font-size: 16px;
    border-radius: 20px;
    border: none;
}

.tarif-section {
    margin-top: 85px;
}

.tarif-section h1 {
    text-align: center;
    background: linear-gradient(90deg, #0A58A5 -10.9%, #F90 137.31%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 30px;
    font-weight: 400;
}

.reparts {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 60px;
}

.repart {
    border-radius: 25px;
    border: 1.5px solid #DAE5EF;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 50%;
}

.repart-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.repart-item .left h2 {
    color: #4C5A6F;
    font-size: 16px;
    font-weight: 500;
}

.repart-item .left p {
    color: rgba(76, 90, 111, 0.60);
    font-size: 12px;
}

.repart-item .right {
    /* padding: 9px 40px; */
    color: #0A58A5;
    font-size: 16px;
    /* width: fit-content; */
    text-align: center;
}

.repart-item .right p {
    border-radius: 20px;
    background: rgba(10, 88, 165, 0.05);
    width: 100px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.accordions {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
    width: 60%;
    margin: 2rem auto;
}

.accordion-item {
    border-radius: 25px;
    border: 1.5px solid #DAE5EF;
}

.accordion {
    color: #444;
    cursor: pointer;
    padding: 18px 30px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: 0.4s;
    display: flex;
    gap: 20px;
    justify-content: space-between;
    color: #4C5A6F;
    font-size: 16px;
    align-items: center;
}

.accordion:after {
    content: '\002B';
    color: #4C5A6F;
    font-weight: bold;
    float: right;
    margin-left: 5px;
    border: 1px solid #4C5A6F;
    border-radius: 100%;
    padding: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 15px;
    width: 15px;
    padding-bottom: 3px;
    padding-right: 3px;
    padding-left: 3px;
}

.accordion.active:after {
    content: "\2212";
}

.panel {
    padding: 0 18px;
    display: none;
    overflow: hidden;
    border-radius: 25px;
    margin-bottom: 10px;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.panel.active {
    display: block; /* Changez la valeur selon vos besoins */
}

.panel p {
    font-size: 16px;
    color: #4C5A6F;
}

.paraph {
    margin-top: 6rem !important;
    margin: 0 auto;
    border-radius: 20px;
    background: #FAFAFA;
    padding: 70px 90px;
    width: 90%;
    color: #4C5A6F;
    font-size: 16px;
    line-height: 28px;
}

.tarif.active {
    border: 1.5px solid #0A58A5 !important;
}

.cont {
    height: 70vh;
    overflow: scroll;
    padding-top: 10px;
    padding-bottom: 40px;
}

.form-button{
    width: 100%;
}

button.generate {
    width: 100%;
    height: 54px;
    border-radius: 20px;
    color: #fff;
    border-radius: none;
    background-color: #0A58A5;
    border: none;
}

.msger-inputarea {
    display: flex;
    margin-bottom: 20px;
    background: #F4F7F9;
    border: 1px solid #DDE6EE;
    border-radius: 25px;
}

.msger-input {
    flex: 1;
    border: none;
    background-color: transparent;
    height: 60px;
    padding: 1rem;
    font-size: 16px;
}

.msger-input:focus {
    outline: none;
}

.msger-send-btn {
    color: #fff;
    cursor: pointer;
    border-radius: 25px;
    height: 60px;
    width: 68px;
    padding: 0;
    background-color: #0A58A5;
    border: none;
    margin: 3px;
}

/**mobile*/
@media (min-width: 380px) and (max-width: 930px) {
    section{
        margin:40px 20px;
    }

    section.demo{
        margin: 0
    }

    .banner-bottom {
        width: 100%;
        padding-bottom: 25px;
    }

    section.banner h1 {
        font-size: 28px;
        line-height: 40px;
    }

    .banner img{
        position: static;
        width: 23%;
    }

    section.banner {
        padding-top: 90px;
        padding-bottom:0;
        flex-direction: column-reverse;
        align-items: center;
        gap: 20px;
    }

    .link-button {
        width: 100%;
    }

    section.demo {
        padding: 20px;
    }

    section.demo p {
        font-size: 18px;
        line-height: 36px;
    }

    h1.section-title {
        font-size: 24px;
        margin-bottom: 2rem
    }

    .functions .slider{
        margin: 0
    }

    .web-slider{
        display: none !important
    }

    .mobile-slider{
        display: block !important
    }

    .swiper{
        margin-top: 2rem
    }

    .swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal{
        display: none
    }

    .slide{
        height: 300px !important
    }

    .functions .slider {
        height: fit-content;
    }

    .partnerbloc{
        padding: 10px;
        height: 40px;
        border-radius: 10px
    }

    .partnerbloc img{
        width: 60px;
        
    }

    .marquee{
        margin: 2rem
    }

    section.fiche{
        margin: 0;
        height: fit-content
    }

    .showing{
        flex-direction: column-reverse;
        height: fit-content;
        justify-content: center;
        align-items: center;
        padding: 3rem 20px;
    }

    .showing img {
        position: initial;
        height: 100%;
        width: 100%
    }

    .tabbedContent{
        flex-direction: column;
        gap: 30px
    }

    .section.structures .onglets{
        margin-top: 2rem
    }

    section.structures .onglets .onglet {
        padding: 1rem;
        cursor: pointer;
        text-align: center;
    }

    .tab-content img{
        width: 100%;
        height: 100px;
    }

    .tab-content {
        padding: 1.5rem;
    }

    section.structures a {
        width: 100%;
        margin-top: 16rem;
    }

    section.structures{
        padding: 20px;
        margin: 0
    }

    .users{
        margin: 2rem 0;
        padding: 2rem 20px
    }

    .usercards{
        flex-direction: column
    }

    .usercard.middle {
        margin-top: 0;
    }

    section.temoignages {
        padding: 0;
    }

    .testimonies .card p {
        font-size: 16px;
    }

    .testimonies .card{
        padding: 20px
    }

    section.question form input,  section.question form textarea{
        width: 100%
    }

    section.question form button {
        width: 100%;
    }

    section.essai{
        margin: 20px;
        gap: 23px;
        padding: 30px
    }

    section.essai h1 {
        font-size: 28px;
        text-align: center;
    }

    section.essai p {
        font-size: 18px;
        text-align: center;
        padding: 20px;
    }

    footer{
        flex-direction: column;
        margin-top: 0;
    }

    footer .top, footer .bottom{
        flex-direction: column-reverse;
        gap: 2rem
    }

    footer .top .nav-links{
        text-align: center;
        flex-direction: column;
        gap: 28px !important;
    }

    footer .top img {
        width: 100px;
        height: 50px;
    }

    section.mobile-nav{
        margin: 0;
    }

    .mobile-nav{
        display: block;
    }

    .mobile-nav-items {
        display: none;
    }
      
    .mobile-nav-items.open {
        display: block;
    }

    #menu-toggle{
        border: none;
        background-color: transparent;
    }

    .mobile-nav-items{
        background-color: #fff;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        height: 100vh;
        width: 100%;
        transition: top 0.3s ease;
    }

   #menu-toggle img{
    width: 30px;
    height: 30px;
   } 

    .no-scroll {
        overflow: hidden;
    }

    .mobile-nav-items .body{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 20px;
        color: #4C5A6E;
    }

    .mobile-nav-items .body a{
        border-bottom: 1px solid #4c5a6e27;
        width: 100%;
        padding: 1.5rem;
        text-align: center;
        transition: all .3s ease-in-out;
        cursor: pointer;
        color: #4C5A6E;
    }

    .mobile-nav-items .body a:hover, .mobile-nav-items .body a.active{
        color: #0A58A5;
    }

    .mobile-nav-items .footer{
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        text-align: center;
        margin-bottom: 10px;
        color: #4c5a6e52;
    }

    .close-btn{
        background-color: transparent;
        border: none;
    }

    .close-btn img{
        width: 40px;
        height: 40px;
    }

    .langue{
        margin-top: 1rem;
    }

    .langue a{
        padding: 0 !important;
        border: none !important;
    }

    .dropdown-body-inner {
        position: absolute;
        right: -140px;
        top: 10px;
        width: 300px;
        border-radius: 20px;
        background: #FFF;
        box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.10);
        padding: 40px;
    }

    .join {
        margin: 87px 20px;
        margin-bottom: 0;
    }

    .utilisateurs {
        width: 100%;
        height: 50px;
        border-radius: 10px;
    }

    .utilisateurs .utilisateur {
        font-size: 12px;
    }
    
    .utilisateurs .utilisateur.active {
        border-radius: 10px;
    }

    .user-content.active {
        display: block;
        padding: 0;
    }

    .join form {
        width: 100%;
        margin-top: 20px;
    }

    .join .section-title {
        padding-top: 50px;
        margin-top: 0;
    }

    .labelcv {
        width: 100%;
    }

    .join form button {
        width: 100%;
        font-size: 16px;
    }

    .devise .form-group input {
        width: 130px;
    }

    .prin {
        margin: 0 20px;
    }

    .tarif-body {
        flex-direction: column;
        width: 100%;
    }

    .tarif-body .left {
        width: 100%;
        padding-right: 0;
        border: none;
    }

    .tarif h1 {
        font-size: 14px;
        margin-top: 20px;
        margin-bottom: 0;
    }

    .tarif {
        padding: 10px;
        height: fit-content;
        border: 1px solid #DAE5EF;
        text-align: center;
        height: 110px;
    }

    .tarif .head {
        font-size: 11px;
    }

    .tarif p {
        display: none;
    }

    .simulateur {
        text-align: center;
    }


    .tarif span {
        font-size: 10px;
    }

    .values .total h2 {
        color: #0A58A5;
        font-size: 20px;
    }

    .tarif-body .right {
        width: 100%;
        margin: 2rem 0 !important;
    }

    .reparts {
        flex-direction: column;
    }
    .repart {
        width: 100%;
        padding: 20px;
    }

    .accordions {
        width: 100%;
    }

    .paraph {
        padding: 40px;
    }
    
    .showing .text {
        width: 100%;
    }

    .showing a {
        display: flex;
        align-items: center;
        width: 100%;
        justify-content: center;
        margin-top: 2rem;
    }

    .showing p {
        text-align: center;
    }

    .accordion span {
        width: 80%;
    }    
    
}
  
@media (min-width: 931px) and (max-width: 1024px) {
    
    .banner img{
        position: static;
        width: 23%;
    }

    section.banner {
        padding-top: 90px;
        padding-bottom:0;
        flex-direction: column-reverse;
        align-items: center;
        gap: 20px;
        padding:40px 20px;
        padding-bottom: 20px;
    }

    .banner-bottom {
        width: 100%;
    }

    section.demo {
        background: linear-gradient(156deg, #0A58A5 1.27%, #F90 87.58%);
        padding: 30px;
        margin-top: 0;
    }

    .functions .slider {
        margin: 0 30px;
        height: 420px;
    }

    .slide{
        height: 320px;
    }

    .partnerbloc {
        padding: 6px;
    }

    .showing img{
        position: static;
    }

    .showing {
        flex-direction: column-reverse;
        align-items: center;
        justify-content: center;
        gap: 50px;
        padding: 0 20px;
        height: fit-content;
        padding-bottom: 70px;
    }

    section.fiche {
        height: fit-content; 
        position: relative;
        background: #FAFAFA;
        padding-top: 2rem;
    }

    .tabbedContent {
        display: flex;
        gap: 34px;
        align-items: center;
        height: 600px;
    }

    .join {
        margin: 87px 20px;
    }

    .utilisateurs {
        width: 100%;
    }

    .join form {
        width: 100%;
    }

    footer .top {
        flex-direction: column;
        gap: 3rem;
    }

    footer .bottom {
        margin-top: 41px;
    }

    .tarif-body {
        flex-direction: column;
    }

    .tarif-body .left {
        width: 100%;
        border-right: none;
        padding-right: 0;
    }

    .tarif {
        padding: 20px;
    }

    .tarif-body .right {
        width: 100%;
        margin: 2rem 0;
    }

    .reparts{
        flex-direction: column;
    }

    .repart{
        width: 100%;
    }

    .accordions {
        width: 75%;
    }
    
    
}

.loader {
  display: flex;
  justify-content: center;
  margin: 20px 0;
}

.loader-dots {
  display: flex;
  gap: 8px;
}

.loader-dots div {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #0A58A5;
  animation: loader 0.8s infinite alternate;
}

.loader-dots div:nth-child(2) {
  animation-delay: 0.2s;
}

.loader-dots div:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes loader {
  to {
    opacity: 0.3;
    transform: translateY(-4px);
  }
}

.msger-inputarea.disabled {
  opacity: 0.6;
  pointer-events: none;
}

.project {
  border-radius: 15px;
  border: 1px solid #DAE5EF;
  padding: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.project:hover {
  border-color: #0A58A5;
  background: rgba(10, 88, 165, 0.05);
}

.signup-link {
  width: 100%;
  height: 51px;
  border-radius: 20px;
  background: #0A58A5;
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.signup-link:hover {
  background: #084785;
  color: #FFF;
}

@media (max-width: 768px) {
    .presentation {
        width: 90%;
        margin: 100px auto;
    }

    .presentation h1 {
        font-size: 28px;
        line-height: 34px;
        text-align: center;
    }

    .presentation p {
        font-size: 16px;
        text-align: center;
        margin-top: 20px;
    }

    .presentation video {
        width: 100%;
        margin-top: 30px;
        margin-bottom: 25px;
    }

    .presentation .cta-button {
        width: 100%;
        height: 50px;
        font-size: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 15px;
    }
}

/* Ajout d'une classe utilitaire pour le bouton CTA */
.cta-button {
    border-radius: var(--arrondi, 20px);
    background: #0A58A5;
    width: 100%;
    display: flex;
    height: 51px;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background: #084785;
    color: #fff;
}

/* Styles de base pour le conteneur de chat */
.chat-container {
    margin: 25px auto;
    width: 50%;
    overflow: scroll;
    position: relative;
}

/* Styles mobiles pour la page de discussion */
@media (max-width: 768px) {
    .chat-container {
        width: 90%;
        margin: 100px auto;
    }

    .chat-container .choices {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .chat-container .choices .choice {
        width: 100%;
        height: auto;
        min-height: 80px;
        padding: 20px;
        gap: 15px;
    }

    .chat-container .choices .choice img {
        width: 30px;
        height: 30px;
    }

    .chat-container .choices .choice p {
        font-size: 14px;
        line-height: 20px;
    }

    .chat-container .bot {
        gap: 10px;
    }

    .chat-container .bot p {
        font-size: 14px;
        line-height: 22px;
    }

    .chat-container .bot img {
        width: 30px;
        height: 30px;
    }

    .chat-left {
        margin: 20px 0;
    }

    .chat-left .avatar {
        width: 25px;
        height: 25px;
    }

    .cont {
        height: auto;
        min-height: 60vh;
        padding: 20px 0;
    }

    .projects {
        grid-template-columns: auto;
    }
}

/* Améliorations des interactions */
.chat-container .choices .choice {
    transition: all 0.3s ease;
    text-decoration: none;
}

.chat-container .choices .choice:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.chat-container .choices .choice:active {
    transform: translateY(0);
}

/* Amélioration de l'accessibilité */
.chat-container .choices .choice:focus {
    outline: 2px solid #0A58A5;
    outline-offset: 2px;
}

/* Styles pour le message de génération */
.msger-inputarea.generating {
  background-color: #f5f5f5;
  padding: 15px;
  text-align: center;
  border-radius: 25px;
  border: 1px solid #DDE6EE;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.generation-message {
  color: #4C5A6F;
  font-size: 14px;
}

.generation-error {
  color: #dc3545;
  font-size: 14px;
}

/* Styles pour la barre de défilement */
.cont {
  scrollbar-width: thin; /* Pour Firefox */
  scrollbar-color: #DDE6EE transparent; /* Pour Firefox */
}

.cont::-webkit-scrollbar {
  width: 1px; /* Largeur de la barre de défilement */
}

.cont::-webkit-scrollbar-track {
  background: transparent; /* Fond de la piste */
}

.cont::-webkit-scrollbar-thumb {
  background-color: #DDE6EE; /* Couleur de la barre */
  border-radius: 20px; /* Bords arrondis */
}

.cont::-webkit-scrollbar-thumb:hover {
  background-color: #C5D1DC; /* Couleur au survol */
}

/* Styles mobiles pour la page des tarifs */
@media (max-width: 768px) {
  .tarifs-content {
    width: 90%;
    margin: 40px auto;
  }

  .tarifs-content h1 {
    font-size: 28px;
    line-height: 34px;
  }

  .tarifs-content p {
    font-size: 11px;
    margin: 20px auto 40px auto;
  }

  .packs {
    flex-direction: column;
    gap: 30px;
  }

  .packs .pack {
    width: 100%;
    padding: 25px;
  }

  .packs .pack h2 {
    font-size: 16px;
  }

  .packs .pack h6 {
    font-size: 28px;
    margin: 15px auto 25px auto;
  }

  .packs .pack a {
    height: 50px;
    font-size: 14px;
  }

  .advantages {
    margin-top: 25px;
    gap: 20px;
  }

  .advantages div span {
    font-size: 13px;
    line-height: 18px;
  }

  .advantages div img {
    width: 16px;
    height: 16px;
  }
}