body {
  font-family: 'Segoe UI', sans-serif;
  background: #0f0f0f;
  color: #eee;
  min-height: 100vh;
  margin: 0;
  padding: 40px 20px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 70px;
}

.faq-container {
  max-width: 600px;
  width: 100%;
  background: #222831;
  border-radius: 15px;
  padding: 30px 40px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.6);
}

.faq-container h1 {
  margin-bottom: 15px;
  font-size: 32px;
  color: #58a6ff;
  text-align: center;
}

.faq-container p {
  margin-bottom: 30px;
  font-size: 18px;
  text-align: center;
  color: #aaa;
}

.faq-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 16px;
  color: #8db3ff;
}

.faq-form input[type="email"],
.faq-form textarea {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 25px;
  border: none;
  border-radius: 10px;
  background: #393e46;
  color: #eee;
  font-size: 16px;
  resize: vertical;
  box-shadow: inset 0 0 8px rgba(0,0,0,0.7);
  transition: background 0.3s ease;
}

.faq-form input[type="email"]:focus,
.faq-form textarea:focus {
  background: #4b5471;
  outline: none;
}

.faq-form button {
  display: block;
  width: 100%;
  background: linear-gradient(135deg, #3a8df5, #60b0ff);
  border: none;
  padding: 15px;
  border-radius: 15px;
  color: white;
  font-weight: 700;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(58,141,245,0.6);
  transition: background 0.3s ease, transform 0.3s ease;
}

.faq-form button:hover {
  background: linear-gradient(135deg, #2c78e4, #58a3f7);
  transform: scale(1.05);
}

.btn-accueil {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #70d6ff;
  color: white;
  padding: 10px 25px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-accueil:hover {
  transform: translateX(-50%) translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}
