<style>
.visually-hidden {
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #ddd;
  padding: 1rem 0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: #1e1b4b;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.2s ease;
}

.faq-question:focus {
  outline: 2px solid #2dd4bf;
  outline-offset: 4px;
}

.faq-item.open .faq-question span {
  font-size: 1.2rem;
  font-weight: 700;
}

.faq-toggle-icon {
  font-size: 24px;
  transition: transform 0.3s ease;
  color: #1e1b4b;
}

.faq-item.open .faq-toggle-icon {
  transform: rotate(45deg);
}

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.5s ease;
}

.faq-answer-content {
  margin-top: 10px;
  color: #1e1b4b;
  font-size: 1rem;
  line-height: 1.6;
}

.faq-answer-content a {
  all: unset;
  text-decoration: underline;
  cursor: pointer;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  border: none !important;
  box-shadow: none !important;
  background: none !important;
  padding: 0 !important;
  display: inline !important;
}
</style>
