.questions-wrapper {
    margin: 50px 0px 100px 0px;
}

.faq {
    width: 75%;
    max-width: 1100px;
    margin: 0 auto;
}

.faq-item {
  border: 1px solid #555;
  border-radius: 7px;
  margin-bottom: 10px;
  background-color: #202020;
}

.faq-question {
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #20a6c0;
  font-size: 25px;
  font-weight: bold;
  cursor: pointer;
}

.faq-question > span:first-child {
  flex: 1;
}

.faq-item:not(.open):not(.closing) .faq-question:hover {
    background: #414141;
}

.faq-icon {
    position: relative;
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    margin-left: 20px;
}

.faq-icon::before,
.faq-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;

    width: 20px;
    height: 2px;

    background: #ddd;
    border-radius: 2px;

    transform: translate(-50%, -50%);
    transition: transform 0.3s ease;
}

.faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.open .faq-icon::after {
    transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer {
    height: 0;
    overflow: hidden;

    padding: 0 20px;
    padding-right: 60px;

    color: #dfe2e8;
    font-size: 18px;
    line-height: 1.5;
    text-align: justify;

    transition:
        height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer p {
    margin: 0 0 25px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer a {
    font-size: 18px;
}

.faq-item.open .faq-answer {
    max-height: 1000px;
    opacity: 1;
    padding: 0 20px 20px;
    padding-right: 60px;
}

.faq-item.open {
  background: #414141;
}

@media (max-width: 1080px) {

    .questions-wrapper {
        margin: 35px 0 60px 0;
    }

    .faq {
        width: 100%;
        max-width: none;
    }

    .faq-item {
        margin-bottom: 10px;
    }

    .faq-question {
        padding: 15px;
        font-size: 19px;
        line-height: 1.4;
        gap: 10px;
    }

    .faq-question > span:first-child {
        min-width: 0;
    }

    .faq-icon {
        flex: 0 0 22px;
        width: 22px;
        height: 22px;
        margin-left: 5px;
    }

    .faq-icon::before,
    .faq-icon::after {
        width: 18px;
    }

    .faq-answer {
        padding: 0 15px;
        padding-right: 15px;
        font-size: 16px;
        line-height: 1.6;
        text-align: left;
    }

    .faq-item.open .faq-answer {
        padding: 0 15px 18px;
        padding-right: 15px;
    }

    .faq-answer p {
        margin: 0 0 20px;
    }

    .faq-answer a {
        font-size: 16px;
    }

    .bottom-note {
        display: block;
        margin-top: 25px;
        font-size: 15px;
        line-height: 1.5;
        text-align: center;
    }
}