@import url("https://fonts.googleapis.com/css2?family=Arimo:ital,wght@0,400;0,500;0,600;0,700;1,400&amp;family=Jost:wght@200;400;500;600;700;800&amp;family=Oswald:wght@300;400;500;600;700&amp;family=Poppins:wght@300;400;500;600;700&amp;display=swap");




body {
    margin: 0;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
  }
  
  .faq-container {
    width: 100%;
    max-width: 80%;
    margin: 50px auto;
    padding: 20px;
  }
  
  .faq-item {
    margin-bottom: 0px;
  }
  
  .question {
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 10px;
    color: #333;
    border-bottom: 3px solid #ddd;
    padding-bottom: 20px;
  }
  
  .question h3 {
    margin: 0;
    font-size: 20px;
  }
  
  .arrow {
    font-size: 20px;
    transition: transform 0.3s ease;
  }
  
  .answer {
    display: none;
    font-size: 16px;
    color: #555;
    padding-left: 25px;
    margin-top: 10px;
    animation: fadeIn 1s ease;
  }
  
  .show {
    display: block;
  }
  
  .rotate-down {
    transform: rotate(90deg);
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  