
    .ea-faq-wrapper{
      max-width:1000px;
      margin:0 auto;
      padding:30px 15px;
      font-family:Cambria, Arial, sans-serif;
      line-height:1.8;
      color:#333333;
    }
    .ea-faq-main-title{
      text-align:center;
      font-size:30px;
      font-weight:700;
      color:#8668AE;
      margin-bottom:30px;
      font-family:Cambria, Arial, sans-serif;
    }
    .ea-faq-category{
      margin-bottom:30px;
    }
    .ea-faq-category-title{
      font-size:22px;
      font-weight:700;
      color:#8668AE;
      margin-bottom:15px;
      padding-left:12px;
      border-left:4px solid #8668AE;
      font-family:Cambria, Arial, sans-serif;
    }
    .ea-faq-item{
      border:1px solid #e7def2;
      border-radius:10px;
      margin-bottom:14px;
      overflow:hidden;
      background:#ffffff;
      box-shadow:0 4px 12px rgba(134,104,174,0.08);
    }
    .ea-faq-question{
      width:100%;
      border:none;
      background:linear-gradient(90deg,#f7f2fc 0%,#ffffff 100%);
      color:#8668AE;
      font-size:16px;
      font-weight:700;
      text-align:left;
      padding:18px 20px;
      cursor:pointer;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:20px;
      font-family:Cambria, Arial, sans-serif;
      line-height:1.6;
    }
    .ea-faq-question:hover{
      background:linear-gradient(90deg,#f2eafb 0%,#ffffff 100%);
    }
    .ea-faq-icon{
      width:26px;
      height:26px;
      min-width:26px;
      border-radius:50%;
      background:#8668AE;
      color:#ffffff;
      display:flex;
      align-items:center;
      justify-content:center;
      font-size:18px;
      line-height:1;
      transition:all 0.3s ease;
      font-family:Arial, sans-serif;
    }
    .ea-faq-item.active .ea-faq-icon{
      transform:rotate(45deg);
      background:#6f5493;
    }
    .ea-faq-answer{
      max-height:0;
      overflow:hidden;
      transition:max-height 0.35s ease,padding 0.35s ease;
      padding:0 20px;
      background:#ffffff;
      color:#333333;
      font-size:15px;
      font-family:Cambria, Arial, sans-serif;
    }
    .ea-faq-item.active .ea-faq-answer{
      padding:0 20px 18px 20px;
    }
    .ea-faq-answer p{
      margin:0 0 12px 0;
      font-family:Cambria, Arial, sans-serif;
    }
    .ea-faq-answer p:last-child{
      margin-bottom:0;
    }
    .ea-faq-answer ul{
      margin:0 0 0 20px;
      padding:0;
      font-family:Cambria, Arial, sans-serif;
    }
    .ea-faq-answer li{
      margin-bottom:8px;
      font-family:Cambria, Arial, sans-serif;
    }
    .ea-faq-answer a{
      color:#8668AE;
      text-decoration:underline;
      font-family:Cambria, Arial, sans-serif;
    }
    @media (max-width:768px){
      .ea-faq-main-title{
        font-size:24px;
      }
      .ea-faq-category-title{
        font-size:19px;
      }
      .ea-faq-question{
        font-size:15px;
        padding:16px;
      }
      .ea-faq-answer{
        font-size:14px;
      }
    }
  