.styled-faq {
  font-family: 'Arial', sans-serif;
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #eee;
  padding: 15px 0;
}

.faq-question {
  background: none !important;
  border: none;
  font-size: 1.1rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  cursor: pointer;
  width: 100%;
  padding: 0;
  color: #575757 !important;
}

.faq-question .icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  margin-right: 10px;
  border-radius: 50%;
  background-color: #f0f0f0;
  font-size: 1.2rem;
  color: #333;
  transition: background-color 0.3s ease;
}

.faq-answer {
  display: none;
  margin-top: 10px;
  color: #444;
}

.faq-answer ul {
  margin-left: 20px;
  list-style-type: disc;
}

.faq-answer.open {
  display: block;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-question .icon {
  content: '−';
}
