/* FAQ Section Styling */
.faq-section {
  padding: 80px 10%;
  background: #0a0f0f;
  color: #fff;
  text-align: center;
  margin-top: 2rem;
}

.faq-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 50px;
  color: #00ffcc;
  text-shadow: 0 0 15px rgba(0,255,204,0.4);
}

.faq-container {
  display: grid;
  gap: 20px;
  max-width: 900px;
  margin-top: 0rem;

}

.faq-item {
  background: rgba(0,0,0,0.6);
  border: 1px solid rgba(0,255,204,0.2);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 12px rgba(0,255,204,0.1);
  transition: 0.3s;
}

.faq-item:hover {
  box-shadow: 0 0 25px rgba(0,255,204,0.4);
  transform: translateY(-3px);
}

.faq-question {
  width: 100%;
  padding: 18px 20px;
  background: none;
  border: none;
  font-size: 1.2rem;
  font-weight: 600;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  cursor: pointer;
}

.faq-question i {
  margin-right: 10px;
  color: #00ffcc;
}

.faq-question .arrow {
  font-size: 1.4rem;
  color: #00ffcc;
  transition: transform 0.3s;
}

.faq-question.active .arrow {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  font-size: 1rem;
  line-height: 1.6;
  transition: all 0.4s ease;
}

.faq-answer p {
  margin: 15px 0;
  color: #bbb;
}
