.contact-section{
  max-width:900px;
  margin:80px auto;
  padding:20px;
}

.contact-section h2{
  margin-bottom:10px;
}

.contact-desc{
  opacity:.7;
  margin-bottom:20px;
}

.contact-form{
  background:#111827;
  padding:20px;
  border-radius:16px;
  border:1px solid #222;
}

.field{
  display:flex;
  flex-direction:column;
  margin-bottom:15px;
}

.field label{
  margin-bottom:5px;
}

.field input,
.field textarea{
  padding:10px;
  border-radius:10px;
  border:none;
  outline:none;
  background:#0d1320;
  color:white;
}

button#sendBtn{
  margin-top:5px;
  padding:10px 18px;
  border-radius:10px;
  border:none;
  cursor:pointer;
  background:#3a86ff;
  color:white;
  font-weight:600;
}

.status{
  margin-top:10px;
}

.faq-title{
  margin-top:40px;
}

/* FAQ */
.faq-item{
  background:#0d1320;
  border-radius:12px;
  border:1px solid #222;
  margin-bottom:10px;
  overflow:hidden;
}

.faq-question{
  width:100%;
  text-align:left;
  padding:14px;
  border:none;
  outline:none;
  cursor:pointer;
  background:none;
  color:white;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.faq-answer{
  display:none;
  padding:12px;
  opacity:.8;
}

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

.faq-item.active .fa-chevron-down{
  transform:rotate(180deg);
}