.help-section.section {
  padding-block-start: 30px;
}

@media (width < 768px) {
  .help-section.section {
    padding-block-start: 30px;
  }
}
@media (width < 525px) {
  .help-section.section {
    padding-block-start: 15px;
  }
}


.help-section__container {
  gap: 24px;
}

.help-section__content {
  gap: 120px;
  justify-content: space-between;
}

@media (width < 1280px) {
  .help-section__content {
    gap: 60px;
  }
}

@media (width < 768px) {
  .help-section__content {
    gap: 24px;
  }
}

.help-section__subsection-title {
  font-size: 40px;
  line-height: 1.1;
  margin-bottom: 0;
  color: var(--color-main);
  transition: margin .5s ease;
}

@media (width < 768px) {
  .help-section__subsection-title {
    font-size: 24px;
  }
}

.help-section__link {
  font-size: 18px;
  line-height: 1.5;
  color: var(--color-black);
  text-decoration: none;
}

.help-section__list {
  max-width: 960px;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.help-section__subsection {
  position: relative;
}

.help-section__subsection::before {
  position: absolute;
  height: 1px;
  width: 100%;
  background-color: #D9D9D9;
  content: '';
  top: 0;
}

.help-section__subsection-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.5s ease-in-out;
  overflow: hidden;
  max-height: 0;
  margin-block: 0;
}

.help-section__subsection-list.active {
  margin-block-end: 36px;
}

@media (width < 768px) {
  .help-section__subsection-list.active {
    margin-block-end: 24px;
  }
}

.help-section__title-container {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  padding-block: 36px;
}

@media (width < 768px) {
  .help-section__title-container {
    padding-block: 24px;
  }
}

.help-section__toggle-arrow {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid var(--color-black);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

@media (width < 768px) {
  /*.help-section__toggle-arrow {
    display: none;
  }*/
}

.help-section__subsection-title svg {
  color: var(--color-black);
  transition: transform .5s ease;
}

.help-section__title-container.active svg {
  transform: rotate(180deg);
}


