.fulloto_ssscontainer {
  width: -webkit-fill-available;
  margin: 0 auto;
}

.fulloto_sssitem {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.fulloto_sssquestion {
  padding: 16px 20px;
  font-weight: 600;
  cursor: pointer;
  background-color: #f9f9f9;
  list-style: none;
  position: relative;
}

.fulloto_sssquestion::after {
  content: '+';
  position: absolute;
  right: 20px;
  font-size: 18px;
  transition: transform 0.3s ease;
}

details[open] .fulloto_sssquestion::after {
  content: '−';
}

details[open] .fulloto_sssquestion {
  background-color: #edf2f7;
}

.fulloto_sssanswer {
  padding: 16px 20px;
  background-color: #fff;
  border-top: 1px solid #e0e0e0;
}