.point-faq{list-style:square inside; padding: 1px;}
.faq-rating .ilike-light .bx-ilike-right { background-position: 0 -38px;}
.faq-rating .ilike-light .bx-you-like .bx-ilike-right { background-position: 0 -18px; }

.container > div {
  margin-bottom: 20px !important;
}
.container-faq {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 100%;
  margin: 0 auto;
}

.accordion-faq {
  background-color: #fff;
  border-bottom: 1px solid #999;
  overflow: hidden;
}

.accordion-faq .top {
  cursor: pointer;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1rem;
  display: flex;
  position: relative;
}

.accordion-faq .top .text {
  font-size: 1.25rem;
  font-weight: 700;
  white-space: wrap;
  color: #12266b;
  flex: 1;
}

.accordion-faq .top img {
  width: 1.5rem;
  align-self: flex-start;
  margin-left: 1.5rem;
  transition: transform 0.3s ease;
}

.accordion-faq .top input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  opacity: 0;
  z-index: 2;
}

.accordion-faq .bottom {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.5rem;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-faq .bottom .text {
  margin: 0;
  padding: 0 0 1rem 0;
}

/* Активное состояние */
.accordion-faq.active .bottom {
  max-height: 1000px; /* Достаточно большое значение для контента */
  padding: 0 1.5rem;
}

.accordion-faq.active .top img {
  transform: rotate(180deg);
}

@media screen and (max-width: 480px) {
  .accordion-faq input {
    z-index: 4;
  }
  
  .accordion-faq .top {
    padding: 0.75rem;
  }
  
  .accordion-faq .top .text {
    font-size: 1.1rem;
  }
}