
  .fxd-faq-section {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    background: #ffffff;
  }
  
  .fxd-faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  
  .fxd-faq-item {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    background: #ffffff;
    transition: box-shadow 0.3s ease;
  }
  
  .fxd-faq-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  }
  
  .fxd-faq-item input[type="radio"] {
    display: none;
  }
  
  .fxd-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    background: #f8fafc;
    transition: background 0.2s ease;
    user-select: none;
  }
  
  .fxd-faq-question:hover {
    background: #f1f5f9;
  }
  
  .fxd-faq-question-text {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-right: 16px;
  }
  
  .fxd-faq-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #ffffff !important;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
  }
  
  .fxd-faq-icon {
    width: 24px;
    height: 24px;
    position: relative;
    flex-shrink: 0;
  }
  
  .fxd-faq-icon::before,
  .fxd-faq-icon::after {
    content: '';
    position: absolute;
    background: #64748b;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  
  .fxd-faq-icon::before {
    width: 12px;
    height: 2px;
    top: 11px;
    left: 6px;
  }
  
  .fxd-faq-icon::after {
    width: 2px;
    height: 12px;
    top: 6px;
    left: 11px;
  }
  
  .fxd-faq-item input[type="radio"]:checked + .fxd-faq-question .fxd-faq-icon::after {
    transform: rotate(90deg);
    opacity: 0;
  }
  
  .fxd-faq-item input[type="radio"]:checked + .fxd-faq-question {
    background: #eff6ff;
    color: #1e40af;
  }
  
  .fxd-faq-item input[type="radio"]:checked + .fxd-faq-question .fxd-faq-number {
    background: linear-gradient(135deg, #1d4ed8, #1e3a8a);
    color: #ffffff !important;
  }
  
  .fxd-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: #ffffff;
  }
  
  .fxd-faq-item input[type="radio"]:checked ~ .fxd-faq-answer {
    max-height: 600px;
    padding: 0 24px 24px 70px;
  }
  
  .fxd-faq-answer p {
    font-size: 15px;
    color: #475569;
    line-height: 1.8;
    margin: 0;
  }
  
  .fxd-faq-answer strong {
    color: #1e293b;
  }
  
  .fxd-faq-cta {
    text-align: center;
    margin-top: 40px;
    padding: 28px;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border-radius: 16px;
  }
  
  .fxd-faq-cta p {
    font-size: 16px;
    color: #1e40af;
    font-weight: 600;
    margin: 0 0 16px 0;
  }
  
  .fxd-faq-cta a {
    display: inline-block;
    padding: 12px 32px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  
  .fxd-faq-cta a:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.35);
  }
  
  @media (max-width: 768px) {
    .fxd-faq-question {
      padding: 16px 18px;
      font-size: 15px;
    }
    .fxd-faq-item input[type="radio"]:checked ~ .fxd-faq-answer {
      padding: 0 18px 20px 60px;
    }
    .fxd-faq-number {
      width: 28px;
      height: 28px;
      font-size: 13px;
    }
  }
