.sss {
  background-color: #5f338a;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  position: relative;
  top: -6rem;
}
.sss-mb {
  margin-bottom: -10%;
}
.sss-header {
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.sss-header p:first-child {
  font-family: "VistolSans-Light", sans-serif;
  font-weight: 300;
  color: #fff;
  font-size: 25px;
  line-height: 0;
}

.sss-header p:nth-of-type(2) {
  font-family: "VistolSans-Bold", sans-serif;
  font-weight: 900;
  font-size: 65px;
  color: #fff;
  line-height: 0;
}

.sss-header p:nth-of-type(2) span {
  font-family: "VistolSans-Bold", sans-serif;
  font-weight: 900;
  font-size: 65px;
  color: #c3d940;
  line-height: normal;
}

.sss-header p:nth-of-type(3) {
  font-family: "VistolSans-Light", sans-serif;
  font-weight: 300;
  font-size: 18px;
  color: #fff;
  line-height: normal;
}

.sss .container {
  margin: 0 auto;
  width: 80%;
}

.accordion {
  background: transparent !important;
}

.accordion .accordion-item {
  border: 1px solid #fff;
  background: transparent;
  padding: 0 2rem;
  margin-bottom: 1em;
  border-radius: 15px;
  transition: all 0.3s ease;
}

/* Active state için item style */
.accordion .accordion-item.active {
  background: #c3d940;
  border-color: #c3d940;
}

.accordion button {
  font-family: "VistolSans-Bold", sans-serif;
  font-weight: 900;
  position: relative;
  display: block;
  text-align: left;
  width: 100%;
  padding: 1.2em 0;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 400;
  border: none;
  background: none;
  outline: none;
}

/* Önceki CSS kodları aynı kalacak, sadece icon ile ilgili kısımları güncelliyoruz */

.accordion button .icon {
  display: inline-block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 22px;
  height: 22px;
  border: 1px solid #c3d940;
  border-radius: 22px;
}

.accordion button .icon::before,
.accordion button .icon::after {
  content: "";
  position: absolute;
  background: #c3d940;
  transition: all 0.3s ease-in-out;
}

.accordion button .icon::before {
  top: 10px;
  left: 5px;
  width: 10px;
  height: 2px;
}

.accordion button .icon::after {
  top: 6px;
  left: 9px;
  width: 2px;
  height: 10px;
  transition: all 0.3s ease-in-out;
}

/* Active durumunda icon değişimi */
.accordion .accordion-item.active .icon::before {
  background: #030303;
}

.accordion .accordion-item.active .icon::after {
  background: #030303;
  transform: rotate(90deg);
  opacity: 0;
}
/* Active state styles */
.accordion .accordion-item.active button,
.accordion .accordion-item.active .accordion-content {
  color: #030303;
}

.accordion .accordion-item.active .icon {
  border-color: #030303;
}

.accordion .accordion-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: height 0.3s ease; /* 300ms yumuşak geçiş */
  color: #fff;
}

.accordion .accordion-item.active .accordion-content {
  opacity: 1;
  max-height: 100%;
}

.accordion .accordion-content p {
  font-size: 15px;
  font-weight: 300;
  margin: 1em 0;
  font-family: "VistolSans-Regular", sans-serif;
  font-weight: 400;
}
