/* FAQ 區塊樣式 */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .faq-item {
    margin-bottom: 1.5rem;
    border-radius: 8px;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
  }
  
  .faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  .faq-question:hover {
    background-color: #f0f7ff;
  }
  
  .faq-question h3 {
    margin: 0;
    font-size: 1.2rem;
    color: #1a1a1a;
  }
  
  .faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2563eb;
  }
  
  .faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
  }
  
  .faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 300px; /* 設定足夠大的高度以容納內容 */
  }