.faq-item {
  margin-bottom: 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
  background-color: #f8f9fa;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}

.faq-question {
  width: 100%;
  padding: 15px;
  background-color: #0056b3;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  text-align: left;
  border: none;
  cursor: pointer;
  outline: none;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: #003f88;
}

.faq-answer {
  padding: 15px;
  display: none;
  background-color: #ffffff;
  color: #333;
  font-size: 14px;
  line-height: 1.6;
}
