body {
  margin: 0;
  font-family: 'Rajdhani', sans-serif;
  background: #05070a;
  color: white;
}

.faq-container {
  max-width: 700px;
  margin: 80px auto;
  padding: 20px;
}

h1 {
  text-align: center;
  margin-bottom: 40px;
  color: #22c55e;
}

.faq-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  margin-bottom: 15px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
  padding: 18px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  transition: 0.3s;
}

.faq-question:hover {
  background: rgba(34, 197, 94, 0.1);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 18px;
  transition: max-height 0.4s ease;
  color: #cbd5e1;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 15px 18px;
}
.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    font-size: 15px;
    font-weight: 600;
    color: #e2e8f0;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 30px; /* uzunchoq */
    cursor: pointer;
    text-decoration: none;
    transition: 0.3s ease;
}

.back-btn i {
    font-size: 14px;
}

.back-btn:hover {
    border-color: #22c55e;
    color: #22c55e;
    background: rgba(34,197,94,0.05);
}