
  /* --- CORE STYLES --- */
  #noble-faq-wrapper {
    background-color: #000000 !important;
    color: #e5e5e5;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    line-height: 1.7;
    padding: 60px 20px;
    box-sizing: border-box;
    width: 100%;
  }
  #noble-faq-wrapper * { box-sizing: border-box; }

  /* --- TYPOGRAPHY --- */
  #noble-faq-wrapper h1 { 
    color: #ffffff;
    margin-top: 0;
    font-weight: 700;
    letter-spacing: -0.5px;
    font-size: 2.8rem; 
    margin-bottom: 20px; 
    line-height: 1.1; 
    text-align: center; 
  }
  
  #noble-faq-wrapper h3 { 
    font-size: 1.3rem; 
    margin-top: 0;
    margin-bottom: 15px; 
    color: #ffffff; 
    line-height: 1.4; 
  }
  
  #noble-faq-wrapper p { 
    margin-bottom: 15px; 
    color: #a3a3a3; 
    font-size: 1rem; 
  }
  
  #noble-faq-wrapper strong { color: #ffffff; font-weight: 600; }

  /* Gradient Text Effect */
  .noble-gradient-text {
    background: linear-gradient(90deg, #c084fc, #db2777);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  /* --- LAYOUT --- */
  .noble-container { max-width: 800px; margin: 0 auto; }
  
  /* --- CARDS (ROWS) --- */
  .noble-faq-row {
    background-color: #111111;
    border: 1px solid #262626;
    border-radius: 16px;
    padding: 35px;
    margin-bottom: 25px;
    transition: border-color 0.3s;
  }
  .noble-faq-row:hover { border-color: #404040; }

  /* --- LIST STYLES --- */
  .noble-list { list-style: none; padding: 0; margin: 0 0 15px 0; }
  .noble-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: #d4d4d4;
    font-size: 1rem;
  }
  .noble-list li::before {
    content: "•";
    color: #ec4899; /* Pink dots */
    font-weight: bold;
    font-size: 1.5em;
    position: absolute;
    left: 0;
    top: -4px;
  }

  /* Number Styling */
  .q-number {
    color: #555;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
  }

  /* --- MOBILE RESPONSIVE --- */
  @media (max-width: 768px) {
    #noble-faq-wrapper h1 { font-size: 2rem; }
    .noble-faq-row { padding: 25px; }
  }
