.fourthFold {
  background-color: #020F48;
  display: flex;
  flex-direction: column;
  text-align: center;
  margin-top: -5px;
}

.faqImageContainer {
  margin: 80px auto 32px;
}

.faqImageContainer img {
  width: 120px;
  height: 120px;
}

.fourthFold h2 {
  color: #BEADFF;
  font-size: 18px;
  font-weight: bold;
  line-height: 40px;
  letter-spacing: 0px;
}

.faqAccordionContainer {
  margin: 32px auto 30px;
}

.faqSection {
  width: 90%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;


  background: linear-gradient(to right, #0049FF 50%, #020F48 100%);
  margin: auto;
  border-radius: 16px;
}

.accordionTextAndButton {
  color: #BEADFF;
  font-size: 16px;
  font-weight: bold;
  line-height: 40px;
  text-align: left;

  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 10px 24px;
}

.accordionTextAndButton button {
  color: #0049ff;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  background: transparent;
}

.accordionButton {
  border: none;
  outline: none;
  transition: 0.3s;
  background-color: #001978;
}

.faqPanelText {
  display: none;
  overflow: hidden;
  background: linear-gradient(to right, #0049FF 50%, #020F48 100%);
}

.faqPanelText p {
  color: #ffffff;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  line-height: 30px;
  margin: 20px;
  letter-spacing: 0px;
}

.faqSection {
  margin: 20px auto;
}


@media screen and (min-width: 540px) {
  .fourthFold h2 {
    font-size: 32px;
    text-align: center;
  }
}

@media screen and (min-width: 760px) {

  .fourthFold h2 {
    font-size: 25px;
  }

  .faqAccordionContainer {
    width: 100%;
    max-width: 1096px;
  }

  .accordionTextAndButton {
    font-size: 22px;
    line-height: 50px;
  }

  .faqPanelText p {
    font-size: 20px;
    line-height: 30px;
  }
}

@media screen and (min-width: 900px) {
  .accordionTextAndButton {
    font-size: 30px;
  }

  .faqPanelText p {
    font-size: 28px;
  }

}

@media screen and (min-width: 1000px) {
  .accordionTextAndButton {
    font-size: 22px;
  }

  .faqPanelText p {
    font-size: 20px;
  }

}

@media screen and (min-width: 1200px) {
  .faqImageContainer {
    margin: 120px auto 32px;
  }

  .faqAccordionContainer {
    width: 100%;
    max-width: 1096px;
    margin: 32px auto 130px;
  }

  .faqSection {
    width: 100%;
    padding: 20px;
  }

  .faqSection button {
    font-size: 20px;
    background: transparent;
  }

  .accordionTextAndButton {
    font-size: 20px;
    line-height: 56px;
  }

  .faqPanelText p {
    font-size: 16px;
    line-height: 30px;
  }

}