/* Fondo general */
body {
  background-color: #111;
  color: #fff;
  font-family: 'Orbitron', sans-serif;
  margin: 0;
  padding: 0;
}

/* Encabezado principal */
.help-title {
  font-size: 42px;
  text-align: center;
  margin-top: 100px;
  margin-bottom: 30px;
  color: #0ff;
  text-shadow:
    0 0 5px #0ff,
    0 0 10px #0ff,
    0 0 20px #0ff;
}

/* Subtítulo de sección */
.help-subtitle {
  font-size: 28px;
  text-align: center;
  margin-bottom: 40px;
  color: #B026FF;
  text-shadow:
    0 0 5px #B026FF,
    0 0 10px #B026FF,
    0 0 20px #B026FF;
}

/* FAQ container */
.faq-container {
  max-width: 1000px;
  margin: 0 auto 80px auto;
  padding: 0 20px;
}

/* Preguntas individuales */
.faq-item {
  margin-bottom: 25px;
  background-color: #1a1a1a;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 0 10px #00ffff33;
}

.faq-item h3 {
  font-size: 20px;
  color: #00eaff;
}

.faq-item p {
  font-size: 16px;
  color: #ccc;
  margin-top: 10px;
}

/* Formulario de contacto */
.contact-form {
  background-color: #1a1a1a;
  max-width: 800px;
  margin: 40px auto 100px auto;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 0 20px #ee00ffb7;
}

.contact-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: #00ff6a;
  text-shadow: 0 0 5px #00ff6a;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border: none;
  border-radius: 8px;
  background-color: #222;
  color: white;
  box-shadow: 0 0 8px rgba(0, 255, 255, 0.729);
  transition: box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  box-shadow: 0 0 12px #0ff;
  outline: none;
}

.contact-form button {
  padding: 12px 25px;
  background-color: #B026FF;
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background-color: #39FF14;
}
