/* General Body */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #000; /* Full page black background */
  color: #fff; /* Default text white */
}

/* Features Section */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  max-width: 1000px;
  margin: 50px auto;
  padding: 0 20px;
}

.feature-box {
  background: #111; /* Slightly lighter black for contrast */
  padding: 40px 30px;
  text-align: center;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(255,255,255,0.05);
}

.feature-box i {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #DAA520; /* Goldenrod for icons */
}

.feature-box h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: #fff;
}

.feature-box p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #eee;
}

/* FAQ Section */
.faq {
  max-width: 900px;
  margin: 50px auto;
  padding: 50px 20px;
  text-align: center;
}

.faq h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #DAA520; /* Goldenrod header */
}

.faq-item {
  background: #111;
  padding: 30px 25px;
  margin-bottom: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(255,255,255,0.05);
  text-align: center;
}

.faq-item h3 {
  margin-bottom: 12px;
  font-size: 1.4rem;
  color: goldenrod;
}

.faq-item p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #eee;
}

footer {
  text-align: center;
  padding: 15px;
  background-color: #000; /* Keep footer black */
  color: #fff; /* Default text white */
  margin-top: 40px;
}

footer a {
  color: #fff; /* Make Back to Main Menu link white */
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}


/* Responsive */
@media (max-width: 600px) {
  .features {
    padding: 0 15px;
  }

  .feature-box {
    padding: 30px 20px;
  }

  .faq {
    padding: 30px 15px;
  }

  .faq-item {
    padding: 25px 15px;
  }
}
