.sss-baslik {
    font-family: "Gilroy-Black", sans-serif;
    color: #4d4685;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
  }
  
  .sss {
    margin: 0 auto;
    padding: 4rem;
    width: 48rem;
  }
  
  .accordion {
    border-bottom: 2px solid #e9e9e9;
  }
  
  .accordion .accordion-item {
    border-bottom: 2px solid #e9e9e9;
    border-right: none;
    border-left: none;
    border-top: none;
  }
  
  .accordion button {
    font-family: "Montserrat-Medium", sans-serif;
    position: relative;
    display: block;
    text-align: left;
    width: 100%;
    padding:  0;
    color: #696969;
    font-size: 16px;
    font-weight: 500;
    border: none;
    background: none;
    outline: none;
  }
  
  .accordion button:hover,
  .accordion button:focus {
    cursor: pointer;
    color: #4d4685;
    font-family: "Montserrat-Bold", sans-serif;

  }
  
  .accordion button:hover::after,
  .accordion button:focus::after {
    cursor: pointer;
    color: #4d4685;
    border: 2px solid #4d4685;
  }
  
  .accordion .accordion-title {
    padding: 1em 1.5em 1em 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .accordion .icon {
    display: inline-block;
    position: absolute;
    top: 18px;
    right: 0;
    width: 22px;
    height: 22px;
    border: 1px solid;
    border-radius: 22px;
  }
  
  .accordion .icon::before {
    display: block;
    position: absolute;
    content: "";
    top: 9px;
    left: 5px;
    width: 10px;
    height: 2px;
    background: currentColor;
  }
  
  .accordion .icon::after {
    display: block;
    position: absolute;
    content: "";
    top: 5px;
    left: 9px;
    width: 2px;
    height: 10px;
    background: currentColor;
  }
  
  .accordion button[aria-expanded="true"] {
    color: #4d4685;
  }
  
  .accordion button[aria-expanded="true"] .icon::after {
    width: 0;
  }
  
  .accordion button[aria-expanded="true"] + .accordion-content {
    opacity: 1;
    max-height: 15em;
    transition: all 200ms linear;
    will-change: opacity, max-height;
  }
  
  .accordion .accordion-content {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 200ms linear, max-height 200ms linear;
    will-change: opacity, max-height;
  }
  
  .accordion .accordion-content p {
    font-size: 14px;
    font-weight: 300;
    margin: 1em 0;
  }