.sss-section {
  padding: 50px 0 30px 0;
  background: #f6f9fc;
}
.sss-list {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 8px;
}
.sss-item {
  border-radius: 14px;
  box-shadow: 0 2px 8px #0001;
  background: #fff;
  margin-bottom: 20px;
  overflow: hidden;
}
.sss-question {
  width: 100%;
  text-align: left;
  background: #183771;
  color: #fff;
  font-size: 16px;
  padding: 16px;
  border: none;
  outline: none;
  cursor: pointer;
  transition: background 0.2s;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sss-question:after {
  content: '+';
  font-size: 28px;
  float: right;
  margin-left: 16px;
  transition: transform 0.2s;
}
.sss-item.active .sss-question:after {
  content: '-';
  transform: rotate(180deg);
}
.sss-answer {
  max-height: 0;
  overflow: hidden;
  background: #f8fafc;
  transition: max-height 0.4s cubic-bezier(.44,1.04,.54,.98);
  padding: 0 22px;
}
.sss-item.active .sss-answer {
  max-height: 300px;
  padding: 20px 22px 20px 22px;
  transition: max-height 0.4s cubic-bezier(.44,1.04,.54,.98), padding 0.2s;
}
@media (min-width: 601px) {
  .sss-item.active .sss-answer {
    max-height: 350px;  /* Masaüstü için sınır */
  }
}
@media (max-width: 600px) {
  .sss-item.active .sss-answer {
    max-height: 240px;  /* Mobilde daha kısa tut */
  }
}
