
  .gl-faq-container { max-width: 900px; margin: 40px auto; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; }
  .gl-faq-title { text-align: center; color: #333; margin-bottom: 30px; font-size: 28px; font-weight: bold; }
  .gl-faq-item { border-bottom: 1px solid #e0e0e0; margin-bottom: 10px; }
  .gl-faq-question { width: 100%; background: #fff; border: none; outline: none; text-align: left; padding: 20px; font-size: 18px; font-weight: 600; color: #444; cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: 0.3s; }
  .gl-faq-question:hover { color: #d4a017; background-color: #fcfcfc; }
  .gl-faq-question::after { content: '+'; font-size: 24px; color: #d4a017; }
  .gl-faq-item.active .gl-faq-question::after { content: '-'; }
  .gl-faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out; background-color: #fff; padding: 0 20px; color: #666; line-height: 1.6; }
  .gl-faq-item.active .gl-faq-answer { max-height: 200px; padding: 10px 20px 20px; }
