  
body {
      margin: 0;
      padding: 0;
      background-color: #000;  /* black background */
      color: #fff;              /* white text */
      font-family: Arial, sans-serif;
	  font-size: 20px;
    }
    /* container to center and constrain width */

    /* FAQ box styling */
    .faq-box {
      background: #111;  /* slightly lighter black/dark gray for box contrast */
      padding: 10px;
      margin-bottom: 10px;
      border-radius: 6px;
      opacity: 0;
      animation: fadeIn 1s ease-in-out forwards;
    }
    /* staggering animation delay so each box appears one by one */
    .faq-box:nth-child(1) { animation-delay: 0s; }
    .faq-box:nth-child(2) { animation-delay: 0.2s; }
    .faq-box:nth-child(3) { animation-delay: 0.4s; }
    .faq-box:nth-child(4) { animation-delay: 0.6s; }
    .faq-box:nth-child(5) { animation-delay: 0.8s; }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(20px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .faq-box h3 {
      margin-top: 0;
      color: #fff;
	  font-size: 22px;
    }
    .faq-box p {
      color: #ddd;
    }