<style>
	
	  .faq-container {
    max-width: 800px;
    margin: 60px auto;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  }

  .faq-item {
    border-bottom: 1px solid #e0e0e5;
  }
  .faq-question {
    padding: 21px 16px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 17px;
    transition: background-color 0.3s;
  }
  .faq-question:hover {
    background-color: #f5f5f7;
  }
  .arrow {
    width: 16px;
    height: 16px;
    fill: #86868b;
    transition: transform 0.3s ease;
  }
  .faq-item.active .arrow {
    transform: rotate(180deg);
  }
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    color: #515154;
    font-size: 15px;
    line-height: 1.5;
    transition: max-height 0.4s ease, padding 0.3s ease;
  }
  .faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 20px 18px 20px;
  }
	

</style>
