.all{
  max-width: 1140px;
  margin: 30px auto;
}
.akordion.aktive + .panel a {
  color: #4192bc;
}

.akordion {
	padding-right:2rem;
    display: flex;
    align-items: center; /* Выравнивание по вертикали */
    position: relative;
    background-color: #f7f7f7;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 14px;
    font-weight: bold;
    transition: background-color 0.3s;
    margin-bottom: 10px; /* Расстояние между кнопками */
    border-radius: 5px; /* Для закругления углов кнопок */  
  }
  .akordion span {
    flex-grow: 1; /* Текст занимает доступное пространство */
    padding-right: 25px; /* Отступ для предотвращения наезда на символ "+" */
}
  
  .aktive, .akordion:hover {
    background-color: #4192bc;
    color: #eee;
  }
  .akordion  {
    flex-grow: 2; /* Текст занимает доступное пространство */
    padding-right: 100px; /* Отступ для предотвращения наезда на символ "+" */
}
  
.akordion i {
  margin-right: 12px;
  font-size: 18px;
  color: #085f94;
}
.akordion:after {
  content: '\002B';
  font-weight: bold;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%); /* Центрирование по вертикали */
  font-size: 20px;
  color: #4192bc;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

  .akordion:hover:after{
    color: #eee;
  }
  .fa-question-circle-o{
  color: #8d9962;
  font-size: 30px;
  padding-right: 10px;
  }
  .akordion:hover .fa-question-circle-o {
  color: #eee;
  }
  .aktive .fa-question-circle-o {
  color: #eee;
  }
  
.akordion:after {
  content: '\002B';
  color: #4192bc;
  font-weight: bold;
  position: absolute;
  right: 20px;
  font-size: 20px;
}

.akordion.aktive:after {
  content: "\2212";
  color: #085f94;
}
  
  .panel {
    padding: 0 18px;
    background-color: eee;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    font-size: 15px;
    margin-bottom: 10px;

    line-height: 1.6;
    border: 0px solid ;
  }
  
  .KKK{
      font-size: 18px;
      font-weight: bold;
      text-align: center;
      color: #383838;
  }
  
  .kusimusButton{
      color: #eee;
      padding: 9px 18px;
      font-size: 14px;
      font-weight: 600;
      min-width: 130px;
      letter-spacing: 0.8px;
      line-height: 22px;
      text-transform: capitalize;
      display: inline-block;
      background: #4192bc;
      border: 0;
      border-radius: 50px;
      text-decoration: none;
      margin-bottom: 20px;
  }
  .kusimusButton:hover {
      background: #085f94;
      color: #eee;
  }
  /* Адаптивность */
@media (max-width: 768px) {
    .akordion {

        font-size: 13px;
        padding: 15px;
    }

    .fa-question-circle-o {
        font-size: 24px; /* Уменьшение размера иконки */
        padding-right: 8px;
    }

    .akordion:after {
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
    }

    .panel {
        padding: 0 15px;
        line-height: 1.4;
    }

    .kusimusButton {
        font-size: 14px;
        padding: 10px 16px;
        min-width: 100px;
    }

    .KKK {
        font-size: 16px;
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .akordion {
        padding: 10px;
        font-size: 12px;
    }

    .fa-question-circle-o {
        font-size: 20px;
    }

    .akordion:after {
        right: 8px;
    }

    .kusimusButton {
        font-size: 10px;
        padding: 8px 12px;
        min-width: 80px;
    }

    .KKK {
        font-size: 14px;
        margin: 10px 0;
    }
  }