.faq-container {
  max-width: 2024px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #ddd;
  margin-bottom: 10px;
}

.faq-question {
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
	padding: 10px;
	font-size: 1.1em;
	font-weight: 500;
	color: #101727;
}

.faq-answer {
  display: none;
  padding: 10px;
  background-color: #fff;
  font-size: 1em;
  line-height: 1.6;
}

.icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  font-size: 1.2em;
  color: #99a2b3;
  border: 2px solid #99a2b3;
  border-radius: 50%;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.icon:hover {
  background-color: #ddd;
  color: #333;
}

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

.faq-item.active .icon {
  content: '-';
  color: #99a2b3;
}
