
  /* FAQ Container */
  .faq-container {
    max-width: 900px;
    width: 100%;
    margin: 40px auto;
    padding: 0 8px;
    font-family: Arial, Helvetica, sans-serif;
  }

  .faq-container h2 {
    font-size: 26px;
    font-weight: 600;
    color: #111;
    margin-bottom: 20px;
    text-align: left;
  }

  /* FAQ Item */
  .faq-item {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 16px 18px;
    margin-bottom: 12px;
    background: #fafafa;
    cursor: pointer;
  }

  .faq-question {
    font-size: 17px;
    font-weight: 600;
    color: #222;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .faq-answer {
    font-size: 15px;
    color: #444;
    line-height: 1.6;
    margin-top: 10px;
    display: none;
  }

  .faq-toggle-icon {
    font-size: 18px;
    margin-left: 10px;
  }
