/**
 * Module CSS: 22-faq-2-col-with-contact-card.css
 * Trích nguyên văn dòng 1021-1058 của pctech-homepage.css gốc.
 * Không đổi nội dung — chỉ tách file theo đúng marker sẵn có trong code gốc.
 */
    /* ── FAQ 2-col with contact card ── */
    .faq-layout {
      display: grid;
      grid-template-columns: 340px 1fr;
      gap: 40px;
      align-items: start;
    }
    .faq-contact-card {
      background: linear-gradient(160deg, var(--blue-deeper), var(--blue-dark));
      color: var(--white);
      border-radius: var(--radius);
      padding: 32px 28px;
      position: sticky;
      top: calc(var(--header-h) + 24px);
      box-shadow: var(--shadow-lg);
    }
    .faq-contact-card h3 {
      font-size: 1.25rem;
      font-weight: 800;
      margin-bottom: 12px;
      color: var(--white);
    }
    .faq-contact-card p { font-size: 0.88rem; opacity: 0.85; margin-bottom: 20px; }
    .faq-contact-card .contact-row {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 12px 0;
      border-top: 1px solid rgba(255,255,255,0.1);
      font-size: 0.88rem;
    }
    .faq-contact-card img {
      width: 100%;
      border-radius: var(--radius-sm);
      margin-top: 16px;
      opacity: 0.9;
    }

