.ssa-faq {
  max-width: 760px;
  margin: 0 auto;
  padding: 2rem 1rem;
  font-family: inherit;
}

.ssa-faq-title {
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 0.75rem;
  color: #111111;
  letter-spacing: -0.3px;
}

.ssa-faq-divider {
  border: none;
  border-top: 1.5px solid #111111;
  margin: 0 0 1.5rem;
}

.ssa-faq-item {
  border-bottom: 1px solid #dddddd;
}

.ssa-faq-q {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 0;
  font-size: 16px;
  font-weight: 500;
  color: #111111;
  cursor: pointer;
  text-align: left;
  gap: 12px;
  font-family: inherit;
}

.ssa-faq-q:hover {
  color: #333333;
}

.ssa-faq-icon {
  font-size: 22px;
  font-weight: 300;
  color: #111111;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  line-height: 1;
}

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

.ssa-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s ease;
  font-size: 15px;
  line-height: 1.8;
  color: #444444;
  padding: 0;
}

.ssa-faq-a.open {
  max-height: 400px;
  padding: 0 0 1.25rem;
}