.faq__container {
  display: flex;
flex-direction: column;
  padding: 48px 100px;
  z-index: 1;
  max-width: 784px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
  gap: 24px;
  
  @media (max-width: 1400px) {
    padding: 48px 100px;
  }
  @media (max-width: 1000px) {
    padding: 32px 16px;
  }
 
}

.faq__header {
  display: flex;
  position: relative;
  flex-direction: column;
 
  @media (max-width: 768px) {
    width: 100%;
    height: auto;
    min-height: 0;
  }
  
}
.faq__points {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq__content {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  @media (max-width: 768px) {
    width: 100%;
    min-width: 0;
    padding: 0px;
  }
  
  .faq__item {
    border-bottom: 1px solid #EAF6F5;
    padding: 16px 8px;
    &:last-child {
      padding: 16px 8px;
      padding-bottom: 0;
      border-bottom: 0;
    }
    div.desc {
      opacity: 0;
      height: 0;
      transition: 0.3s;
    }
    &.active {
      div.desc {
        opacity: 1;
        height: auto;
      }
    p.title::before {
      opacity: 0;
    }

    }
    p.title {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-weight: 600;
      margin-bottom: 8px;
      gap: 8px;
      cursor: pointer;
      &::after {
        content: "";
        width: 14px;
        height: 1px;
        background-color: #020202;
        display: block;
        min-width: 14px;
      }
      &::before {
        content: "";
        width: 14px;
        height: 1px;
        background-color: #020202;
        display: block;
        position: absolute;
        transform: rotate(90deg);
        right: 0px;
        transition: 0.3s;
      }
    }
  }
}
