body {
  font-family: Arial, sans-serif;
  background-color: #0f172a;
  color: #f1f5f9;
  margin: 0;
  padding: 2rem;
  }

h1 {
  text-align: center;
  margin-bottom: 2rem;
  color: #22d3ee;
  }

.faq-container {
  max-width: 800px;
  margin: 0 auto 2rem;
  }

.faq-item {
  background-color: #1e293b;
  border: 1px solid #334155;
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
  }

.faq-question {
  padding: 1rem;
  cursor: pointer;
  font-weight: bold;
  background-color: #1e293b;
  color: #f1f5f9;
  border: none;
  width: 100%;
  text-align: left;
  }

.faq-answer {
  display: none;
  padding: 1rem;
  background-color: #0f172a;
  color: #94a3b8;
  }

.active .faq-answer {
  display: block;
        }

.question-form {
  background-color: #1e293b;
  border: 1px solid #334155;
  border-radius: 8px;
  padding: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
  }

.question-form h2 {
  color: #22d3ee;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  }

.question-form textarea {
  width: 100%;
  padding: 1rem;
  border-radius: 8px;
  border: 1px solid #334155;
  background-color: #0f172a;
  color: #f1f5f9;
  resize: vertical;
  min-height: 120px;
  margin-bottom: 1rem;
  }

.question-form button {
  background-color: #22c55e;
  color: #0f172a;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  }

.question-form button:hover {
  background-color: #16a34a;
  transform: translateY(-2px);
}
