.word-name {
  font-size: 24px;
  color: #045c5e;
  font-weight: 600;
  border-top: 1px solid #d9d9d9;
  padding-top: 15px;
}
.letter {
  font-size: 32px;
  width: 100%;
  display: block;
  font-weight: 600;
  margin-bottom: 0px !important;
}
/* Раскрытие и сворачивание блока */
.program__selector+label:before {
  border: 1px solid #ccdcdd !important;
  border-radius: 20% !important;
}
.program__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
}
.active .program__content {
  max-height: fit-content;
}
/* Анимационный эффект плавности */
.program__content {
  transition: max-height 0.3s ease-in-out;
}
/* Иконка плюс/минус */
.program__icon {
  transform: rotate(0deg);
  transition: transform 0.3s ease-in-out;
}
.active .program__icon {
  transform: rotate(-180deg);
  /* Поворачиваем иконку при открытии */
}