  /* ── Q&A SECTION STYLING ── */
    .qa-section {
      margin: 40px 0 60px;
    }
     
    .qa-container {
      max-width: 780px;
      margin: 0 auto;
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 3px 15px rgba(0,0,0,.08);
      padding: 36px 40px;
    }
     
    .qa-header {
      margin-bottom: 28px;
    }
     
    .qa-header h2 {
      margin: 0 0 8px;
      font-size: 26px;
      font-weight: 700;
      color: #003366;
    }
     
    .qa-header p {
      color: #666;
      font-size: 15px;
      margin: 0;
    }
     
    .qa-list h3 {
      font-size: 17px;
      font-weight: 600;
      color: #003366;
      margin: 0 0 16px;
    }
     
    .qa-item {
      border: 1px solid #e8edf2;
      border-radius: 10px;
      padding: 18px 20px;
      margin-bottom: 12px;
      background: #fafbfc;
    }
     
    .qa-question {
      display: flex;
      gap: 10px;
      align-items: flex-start;
      font-weight: 600;
      color: #1a202c;
      margin-bottom: 10px;
      font-size: 15px;
    }
     
    .qa-answer {
      margin-left:20px;
      display: flex;
      gap: 10px;
      align-items: flex-start;
      color: #444;
      font-size: 14px;
      line-height: 1.65;
      padding-top: 10px;
      border-top: 1px solid #edf0f3;
    }
     
    .qa-answer--pending {
      color: #999;
      font-style: italic;
    }
     
    .qa-badge {
      display: inline-block;
      font-size: 11px;
      font-weight: 700;
      padding: 2px 8px;
      border-radius: 4px;
      flex-shrink: 0;
      margin-top: 2px;
      letter-spacing: 0.02em;
    }
     
    .qa-badge--q {
      background: #003366;
      color: #fff;
    }
     
    .qa-badge--a {
      background: #27ae60;
      color: #fff;
    }
     
    .qa-meta {
      margin-top: 10px;
      color: #999;
      font-size: 12px;
    }
     
    .qa-ask-btn {
      display: inline-block;
      margin-top: 24px;
      padding: 12px 26px;
      background: #1aa90d;
      color: #fff;
      border: none;
      border-radius: 8px;
      font-size: 15px;
      font-weight: 600;
      cursor: pointer;
      transition: background 0.2s;
    }
     
    .qa-ask-btn:hover {
      background: #002244;
    }
     
    /* ── OVERLAY & MODALS ── */
    .qa-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.55);
      z-index: 9999;
      align-items: center;
      justify-content: center;
      padding: 1rem;
    }
     
    .qa-overlay.open {
      display: flex;
    }
     
    .qa-modal {
      background: #ffffff;
      border-radius: 12px;
      padding: 32px 36px;
      width: 100%;
      max-width: 500px;
      box-shadow: 0 8px 40px rgba(0,0,0,0.18);
      position: relative;
      box-sizing: border-box;
    }
     
    .qa-modal-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 24px;
    }
     
    .qa-modal-header h3 {
      font-size: 20px;
      font-weight: 700;
      color: #003366;
      margin: 0;
    }
     
    .qa-modal-close {
      background: none;
      border: none;
      font-size: 24px;
      color: #888;
      cursor: pointer;
      line-height: 1;
      padding: 4px 8px;
      border-radius: 6px;
      transition: background 0.15s;
    }
     
    .qa-modal-close:hover {
      background: #f0f0f0;
      color: #333;
    }
     
    .qa-field {
      margin-bottom: 16px;
    }
     
    .qa-field label {
      display: block;
      font-size: 13px;
      font-weight: 600;
      color: #333;
      margin-bottom: 6px;
    }
     
    .qa-optional {
      font-weight: 400;
      color: #999;
    }
     
    .qa-field input,
    .qa-field textarea {
      width: 100%;
      padding: 10px 12px;
      border: 1px solid #d0d7e0;
      border-radius: 7px;
      font-size: 14px;
      color: #1a202c;
      background: #fff;
      font-family: inherit;
      outline: none;
      box-sizing: border-box;
      transition: border-color 0.15s, box-shadow 0.15s;
    }
     
    .qa-field input:focus,
    .qa-field textarea:focus {
      border-color: #003366;
      box-shadow: 0 0 0 3px rgba(0, 51, 102, 0.1);
    }
     
    .qa-field textarea {
      resize: vertical;
      min-height: 100px;
    }
     
    .qa-modal-submit {
      width: 100%;
      padding: 12px;
      background: #003366;
      color: #fff;
      border: none;
      border-radius: 8px;
      font-size: 15px;
      font-weight: 600;
      cursor: pointer;
      margin-top: 6px;
      transition: background 0.2s;
      font-family: inherit;
    }
     
    .qa-modal-submit:hover {
      background: #002244;
    }
     
    .qa-modal-submit:disabled {
      background: #7a9bbf;
      cursor: not-allowed;
    }
     
    #qa-message, #answer-message, #ask-message {
      margin-top: 12px;
      font-size: 14px;
      font-weight: 500;
      min-height: 20px;
    }
    
    .success { color: #27ae60; }
    .error { color: #c0392b; }
    
    .qa-answer-btn {
      background-color: #003366;
      color: white;
      padding: 8px 16px;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      margin-top: 10px;
      font-size: 13px;
      font-weight: 600;
    }

    .qa-answer-btn:hover {
      background-color: #002244;
    }

    /* Turnstile widget spacing */
    .cf-turnstile {
      margin: 12px 0 6px;
    }

    @media (max-width: 600px) {
      .qa-container, .qa-modal {
        padding: 24px 20px;
      }
    }