.delivery-and-payment__answers-to-questions-about-delivery{
  display: flex;
  flex-direction: column;
  gap: 32px;
  .heading{
    font-weight: 600;
    font-size: 40px;
    line-height: 120%;
    letter-spacing: 0em;
    color: #222222;
    margin: 0;
  }
  .accordion-container{
    display: flex;
    flex-direction: column;
    gap: 0px;
    .ac{
      border: none;
      border-bottom: 1px solid #E8E8E8;
      margin: 0;
      background-color: transparent;
      display: flex;
      flex-direction: column;
      gap: 16px;
      padding: 24px 0px 8px 0px;
      .ac-trigger{
        padding: 0px;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        &::after {
          display: none;
        }
        h4 {
          font-family: 'Montserrat';
          font-weight: 600;
          font-size: 24px;
          line-height: 130%;
          letter-spacing: 0em;
          color: #222222;
          margin: 0;
        }
        svg {
          transition: transform 0.3s ease;
          width: 40px;
          height: 40px;
          flex-shrink: 0;
        }
      }
      .ac-panel, .ac-panel > * {
        font-weight: 400;
        font-size: 16px;
        line-height: 140%;
        letter-spacing: 0em;
        color: #222222;
        a {
          color: #222222;
          text-decoration: underline;
          font-weight: 600;
          &:hover {
            text-decoration: none;
          }
        }
      }
      &:last-child{
        border-bottom: none;
      }
      &.is-active{
        .ac-trigger{
          svg {
            transform: rotate(180deg);
          }
        }
      }
    }
  }
}
@media (max-width: 991px) {
  .delivery-and-payment__answers-to-questions-about-delivery{
    gap: 24px;
    .heading{
      font-size: 24px;
      line-height: 130%;
    }
    .accordion-container{
      display: flex;
      flex-direction: column;
      gap: 0px;
      .ac{
        border: none;
        border-bottom: 1px solid #E8E8E8;
        margin: 0;
        background-color: transparent;
        display: flex;
        flex-direction: column;
        gap: 16px;
        padding: 16px 0px 0px 0px;
        .ac-trigger{
          padding: 0px;
          display: flex;
          flex-direction: row;
          justify-content: space-between;
          align-items: center;
          &::after {
            display: none;
          }
          h4 {
            font-size: 20px;
            line-height: 140%;
          }
          svg {
          }
        }
        .ac-panel, .ac-panel > * {
        }
        &:last-child{
        }
        &.is-active{
          .ac-trigger{
            svg {
            }
          }
        }
      }
    }
  }
}