@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap');
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
    font-family: 'Roboto', sans-serif;

}
.top{
    height: 3rem;
  
    display: flex;
    align-items: center;
    padding-left: 5rem;
}
.top a{
  text-decoration: none;
  color: black;
}
.search{
    position: relative;
}
.logo img{
  width: 16rem;
}
.body{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
}
.search input{
    padding-left: 2rem;
    width: 35rem;
    height: 3rem;
    border-radius: 0.4rem;
    margin: 1rem 0;
}
.glass{
    position: absolute;
    bottom:  1.9rem;
    padding-left: 11px;
}
.faq-container{
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    margin-top: 2rem;
   
    
}
.faq{
    width: 100%;
   
}

.faq-item {
    margin-bottom: 10px;
    transition: 2s ease-in-out;
  }
  
  .question {
    background-color: #f1f1f1;
    padding: 10px;
    cursor: pointer;
    transition: 2s ease-in-out;
    font-weight: bold;
  }
  
  .answer {
    display: none;
    padding: 10px;
  }
  .caption{
    text-align: center;
    margin-top: 5rem;
  }
  .cs-caption{
    text-align: center;
    margin-top: 5rem;
  }
  .chat{
    display: flex;
    width: 50%;
   margin: auto;
   margin-top: 5rem;
   border: 1px solid black;
   padding: 1.5rem;
   border-radius: 12px;
   margin-bottom: 5rem;
   box-shadow: 5px 10px #888888;
  }
  .icon{
    width: 30%;
    display: flex;
    justify-content: center;
  }
  .icon i{
    font-size: 5rem;
    color: rgb(37, 150, 190);

  }
  .contact{
   width: 70%;
   text-align: center;
 
  }

  @media (max-width: 950px) {
   
   *{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
   }
    .top{
     
      display: flex;
margin: auto auto;
width: 390px;


    }

.search input{
  width: 99%;
}
.faq-container{
  width: 100%;
}
.logo img{
  width: 6rem;
}
.faq{
  width: 95%;
}
.chat{
  width: 96%;
}

  }
