main {
  display: flex;
  justify-content: space-between;
  width: 80%;
  margin: 50px auto;
}

main p a {
  text-decoration: underline;
  font-weight: 500;
}

main aside {
  width: 25%;
  border: 1px solid rgba(40, 40, 40, 0.2);
  color: rgb(20, 20, 20);
  height: fit-content;
  border-radius: 30px;
  padding: 20px 30px;
}

main aside p {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
}

main aside a {
  position: relative;
  display: block;
  width: fit-content;
  margin-bottom: 1px;
  font-size: 16px;
  color: rgb(55, 55, 55);
}

main aside a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0%;
  height: 3px;
  background-color: #2aab32;
  transition: width 0.3s ease-in-out;
}

main aside a:hover::after {
  width: 100%;
}

main .sss-giris {
  width: 70%;
  color: rgb(40, 40, 40);
  border: 1px solid rgba(40, 40, 40, 0.2);
  color: rgb(20, 20, 20);
  height: fit-content;
  border-radius: 30px;
  padding: 20px 30px;
}

main .sss-giris h1 {
  font-size: 28px;
  margin-bottom: 20px;
  font-weight: 600;
  color: rgb(20, 20, 20);
}

main .sss-giris p {
  font-size: 15px;
  margin-bottom: 30px;
  font-weight: 400;
  line-height: 1.4;
}

main .sss-giris b {
  font-weight: 600;
}

main .sss-giris h2 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}

main .sss-giris ul {
  padding-left: 20px;
  margin-bottom: 30px;
}

main .sss-giris ul li {
  margin-bottom: 25px;
  font-weight: 400;
  line-height: 1.4;
  font-size: 15px;
  margin-bottom: 5px;
}

section.sss {
  overflow: hidden;
}

.accordion-item {
  border: 1px solid rgb(40, 40, 40, 0.2);
  border-radius: 30px;
  margin-bottom: 20px;
  color: rgb(55, 55, 55);
}

.accordion-title {
  padding: 5px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  border-radius: 30px;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 30px;
}

.accordion-content p {
  margin: 0;
}

.accordion-title::after {
  content: '+';
  color: #2aab32;
  font-size: 30px;
  transition: transform 0.3s ease;
}

.accordion-title.active::after {
  content: '-';
  transform: rotate(180deg);
}

@media screen and (max-width:1050px) {
  main {
    width: 90%;
    margin: 30px auto;
  }
}

@media screen and (max-width:900px) {
  main aside {
    width: 28%;
  }

  main aside p {
    font-size: 20px;
  }

  main aside p a {
    font-size: 16px;
  }
}

@media screen and (max-width:650px) {
  main {
    flex-direction: column;
    gap: 30px;
  }

  main aside {
    width: 100%;
    order: 2;
    text-align: center;
  }

  main aside a {
    display: flex;
    justify-self: center;
    width: fit-content;
    margin-bottom: 8px;
  }

  main .sss-giris {
    width: 100%;
  }

  main .sss-giris h1 {
    font-size: 24px;
  }

  .accordion-title {
    padding: 10px 15px;
    font-size: 14px;
  }

  .accordion-content {
    padding: 0 15px !important;
  }

  .accordion-content p {
    font-size: 14px !important;
  }

  .accordion-title::after {
    font-size: 20px;
  }
}