  .faq-hero {
      background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
      color: white;
      padding: 140px 0 80px;
      text-align: center;
  }

  .faq-hero h1 {
      font-family: var(--font-display);
      font-size: 3rem;
      font-weight: 800;
      margin-bottom: 1rem;
  }

  .faq-hero p {
      font-size: 1.25rem;
      opacity: 0.9;
      max-width: 600px;
      margin: 0 auto;
  }

  .faq-content {
      padding: 80px 0;
      background: var(--bg-secondary);
  }

  .faq-search {
      max-width: 700px;
      margin: 0 auto 4rem;
  }

  .faq-search input {
      width: 100%;
      padding: 1.25rem 1.75rem;
      font-size: 1.125rem;
      border: 2px solid var(--border-color);
      border-radius: 16px;
      background: white;
      transition: all 0.3s ease;
  }

  .faq-search input:focus {
      outline: none;
      border-color: var(--primary);
      box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.1);
  }

  .faq-categories {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 1.5rem;
      margin-bottom: 4rem;
  }

  .faq-category-btn {
      padding: 1.25rem 1.5rem;
      background: white;
      border: 2px solid var(--border-color);
      border-radius: 12px;
      font-size: 1rem;
      font-weight: 600;
      color: var(--text-primary);
      cursor: pointer;
      transition: all 0.3s ease;
      text-align: left;
      display: flex;
      align-items: center;
      gap: 0.75rem;
  }

  .faq-category-btn:hover,
  .faq-category-btn.active {
      border-color: var(--primary);
      background: rgba(0, 102, 255, 0.05);
      color: var(--primary);
  }

  .faq-category-icon {
      font-size: 1.5rem;
  }

  .faq-section {
      margin-bottom: 3rem;
  }

  .faq-section-title {
      font-family: var(--font-display);
      font-size: 1.75rem;
      font-weight: 700;
      margin-bottom: 1.5rem;
      color: var(--text-primary);
  }

  .faq-list {
      display: flex;
      flex-direction: column;
      gap: 1rem;
  }

  .faq-item {
      background: white;
      border-radius: 16px;
      border: 2px solid transparent;
      overflow: hidden;
      transition: all 0.3s ease;
  }

  .faq-item:hover {
      border-color: rgba(0, 102, 255, 0.2);
  }

  .faq-item.active {
      border-color: var(--primary);
      box-shadow: 0 4px 20px rgba(0, 102, 255, 0.1);
  }

  .faq-question {
      padding: 1.75rem 2rem;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 1.5rem;
      background: white;
      transition: background 0.3s ease;
  }

  .faq-question:hover {
      background: rgba(0, 102, 255, 0.02);
  }

  .faq-question h3 {
      font-family: var(--font-display);
      font-size: 1.125rem;
      font-weight: 600;
      color: var(--text-primary);
      flex: 1;
      margin: 0;
  }

  .faq-icon {
      width: 32px;
      height: 32px;
      background: rgba(0, 102, 255, 0.1);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary);
      flex-shrink: 0;
      transition: all 0.3s ease;
  }

  .faq-icon svg {
      transition: transform 0.3s ease;
  }

  .faq-item.active .faq-icon {
      background: var(--primary);
      color: white;
  }

  .faq-item.active .faq-icon svg {
      transform: rotate(180deg);
  }

  .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease, padding 0.4s ease;
  }

  .faq-item.active .faq-answer {
      max-height: 1000px;
  }

  .faq-answer-content {
      padding: 0 2rem 2rem;
      color: var(--text-secondary);
      line-height: 1.8;
      font-size: 1.0625rem;
  }

  .faq-answer-content p {
      margin-bottom: 1rem;
  }

  .faq-answer-content ul {
      margin: 1rem 0;
      padding-left: 1.5rem;
  }

  .faq-answer-content li {
      margin-bottom: 0.5rem;
  }

  .faq-cta {
      background: linear-gradient(135deg, var(--primary), var(--primary-dark));
      color: white;
      padding: 60px 0;
      text-align: center;
      border-radius: 20px;
      margin-top: 4rem;
  }

  .faq-cta h2 {
      font-family: var(--font-display);
      font-size: 2rem;
      margin-bottom: 1rem;
  }

  .faq-cta p {
      font-size: 1.125rem;
      opacity: 0.9;
      margin-bottom: 2rem;
  }