
  .uee-faq-container {
    max-width: 900px;
    margin: 30px auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #333333;
  }
  .uee-faq-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #111111;
  }
  .uee-faq-item {
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    margin-bottom: 12px;
    background-color: #ffffff;
    transition: all 0.2s ease-in-out;
    overflow: hidden;
  }
  .uee-faq-item[open] {
    border-color: #000000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  }
  .uee-faq-question {
    font-size: 16px;
    font-weight: 600;
    padding: 16px 20px;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #222222;
    background-color: #fafafa;
    user-select: none;
  }
  .uee-faq-item[open] .uee-faq-question {
    background-color: #ffffff;
    border-bottom: 1px solid #f0f0f0;
  }
  .uee-faq-question::-webkit-details-marker {
    display: none;
  }
  .uee-faq-question::after {
    content: "+";
    font-size: 20px;
    font-weight: 400;
    color: #666666;
    transition: transform 0.2s ease;
  }
  .uee-faq-item[open] .uee-faq-question::after {
    content: "−";
    color: #000000;
  }
  .uee-faq-answer {
    padding: 18px 20px;
    font-size: 14px;
    line-height: 1.6;
    color: #555555;
    background-color: #ffffff;
  }
  @media (max-width: 768px) {
    .uee-faq-title {
      font-size: 22px;
    }
    .uee-faq-question {
      font-size: 15px;
      padding: 14px 16px;
    }
    .uee-faq-answer {
      font-size: 13px;
      padding: 14px 16px;
    }
  }
