body {
    font-family: Arial, sans-serif;
    margin: 0;
    background: #fff;
    color: #333;
  }
  .faq-container {
    max-width: 900px;
    margin: 80px auto;
    padding: 20px;
  }
  .faq-title {
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 40px;
  }
  .faq-item {
    border-bottom: 1px solid #ddd;
    padding: 20px 0;
    cursor: pointer;
  }
  .faq-question {
    font-size: 1.1rem;
    font-weight: 600;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .faq-question::after {
    content: '\25BC';
    color: #3FBF7F;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
  }
  .faq-question.active::after {
    transform: rotate(180deg);
  }
  .faq-answer {
    display: none;
    padding-top: 10px;
    font-size: 0.95rem;
    line-height: 1.5;
  }
  .faq-answer a {
    color: #3FBF7F;
    text-decoration: underline;
  }