/* =================================== */
/* faq.css */
/* =================================== */

/* FAQ Section */
  .ze-faq-section {
    padding: 60px 24px 40px;
  }
  .ze-faq-title {
    font-size: 28px;
    line-height: 1.2;
    margin: 0 0 32px 0;
    text-align: center;
  }
  .ze-faq-list {
    max-width: 720px;
    margin: 0 auto;
  }
  .ze-faq-item {
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .ze-faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    user-select: none;
    -webkit-user-select: none;
    gap: 16px;
  }
  .ze-faq-q:hover { color: #00E5AA; }
  .ze-faq-arrow {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform 0.25s ease;
    stroke: rgba(255,255,255,0.4);
  }
  .ze-faq-item.ze-open .ze-faq-arrow {
    transform: rotate(180deg);
    stroke: #00E5AA;
  }
  .ze-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255,255,255,0.65);
    padding: 0 0 0 0;
  }
  .ze-faq-item.ze-open .ze-faq-a {
    max-height: 500px;
    padding-bottom: 20px;
  }
  .ze-faq-a a {
    color: #00E5AA !important;
    text-decoration: underline !important;
  }
  .ze-faq-a a:hover {
    color: #00FFB8 !important;
  }

  .ze-cta-section {
    padding: 80px 24px;
    text-align: center;
  }

  .ze-cta-title {
    font-size: 42px;
    line-height: 1.2;
    margin: 0 0 20px 0;
  }

  .ze-cta-section .ze-cta-text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 40px 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
