
  /* FAQ 容器样式 */
  .loladiva-faq-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: #F8F5F0; /* 网站背景色 */
    font-family: 'Helvetica Neue', Arial, sans-serif;
  }

  /* 分类标题样式 */
  .faq-category-title {
    color: #DEBB7E; /* 强调色 */
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    margin: 40px 0 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .faq-category-title:first-child {
    margin-top: 0;
  }

  /* 单个问题项 */
  .faq-item {
    border-bottom: 1px solid #DEBB7E; /* 分割线颜色 */
  }

  /* 问题按钮样式 */
  .faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 20px 0;
    font-size: 16px;
    font-weight: 600;
    color: #333333;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
  }

  .faq-question:hover, 
  .faq-question.active {
    color: #DEBB7E; /* 悬停和激活状态文字变色 */
  }

  /* 加号/减号图标 */
  .faq-icon {
    font-size: 24px;
    font-weight: 300;
    color: #DEBB7E;
    transition: transform 0.3s ease;
  }

  .faq-question.active .faq-icon {
    transform: rotate(45deg); /* 展开时加号变为叉号 */
  }

  /* 答案区域（默认折叠） */
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
  }

  /* 答案文本排版 */
  .faq-answer-content {
    padding-bottom: 20px;
    font-size: 15px;
    line-height: 1.6;
    color: #555555;
  }

  .faq-answer-content p {
    margin: 0 0 10px;
  }

  .faq-answer-content p:last-child {
    margin-bottom: 0;
  }

  .faq-answer-content ul, 
  .faq-answer-content ol {
    margin: 10px 0;
    padding-left: 20px;
  }

  .faq-answer-content li {
    margin-bottom: 8px;
  }

  /* 超链接样式 */
  .faq-answer-content a {
    color: #DEBB7E;
    text-decoration: none;
    font-weight: bold;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
  }

  .faq-answer-content a:hover {
    border-bottom: 1px solid #DEBB7E;
  }
