.faq-section {
  background-color: #111;
  color: #fff;
  padding: 10px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.faq-container {
  max-width: 800px;
  margin: auto;
  text-align: center;
}

.faq-section h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.faq-subtitle {
  color: #aaa;
  margin-bottom: 40px;
  font-size: 0.95rem;
}

.faq-subtitle a {
  color: #fff;
  font-weight: bold;
  text-decoration: underline;
}

.faq-item {
  background: #1c1c1c;
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0,0,0,0.3);
  transition: 0.3s;
}

.faq-question {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  padding: 20px;
  font-size: 1.1rem;
  color: #fff;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}

.faq-question:hover {
  background-color: #2a2a2a;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 15px 20px;
}


.faq-answer p {
  margin: 20px 0;
  color: #ccc;
  font-size: 0.95rem;
}


.faq-item.active .faq-question span {
  transform: rotate(45deg);
}
