.faq-section {
  width: 1200px;
  margin: 0 auto;
}

.mainfaqs {
  margin-top: -7em;
  text-align: center;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-image: url('src/images/wholepagebg.png');
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
}

.top-badge {
  margin-top: 20em;
  background: #e63946;
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 6px 16px;
  font-size: 14px;
  margin-bottom: 20px;
  cursor: default;
}

.faq-title {
  font-size: 65px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 700;
  line-height: 65px;
  color: #1e2939;
  margin-bottom: 0.5em;
}

.faq-title .accent {
  color: #e63946;
}

.faq-desc {
  font-size: 20px;
  line-height: 1.6;
  color: #4a5565;
  margin-bottom: 2rem;
  font-weight: 400;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

/* FAQ Container */
.faq-container {
  text-align: left;
}

.faq-item {
  border-radius: 30px;
  border: 1px solid #1e29394d;
  margin: 12px 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question {
  width: 100%;
  padding: 16px 20px;
  background: none;
  border: none;
  outline: none;
  font-size: 20px;
  color: #1E2939;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  align-items: center;
  background-color: white;
}

.faq-question .icon {
  font-size: 20px;
  font-weight: bold;
}

.faq-container {
    padding-bottom: 5em;
}

.faq-answer {
  height: 0;
  overflow: hidden;
  transition: height 0.4s ease;
  /* smooth slide */
  padding: 0 20px;
  /* keep padding fixed */
}


.faq-item.active .faq-answer {
  font-size: 20px;
  line-height: 1.6;
  color: #4a5565 !important;
  margin-bottom: 2rem;
  font-weight: 400 !important;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}


.faq-answer p {
  font-size: 20px;
  line-height: 1.6;
  color: #4a5565;
  margin-bottom: 2rem;
  font-weight: 400;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}


/* ===================== */
/* RESPONSIVE QUERIES    */
/* ===================== */

/* Tablets */
@media (max-width: 1024px) {
  .faq-section {
    width: 100%;
  }

  .faq-title {
    font-size: 50px;
    line-height: 55px;
  }

  .faq-desc {
    font-size: 20px;
    line-height: 32px;
    max-width: 700px;
  }
}

/* Mobiles */
@media (max-width: 768px) {
  .faq-section {
    width: 100%;
    padding: 0 1em;
  }
  @media (max-width: 768px) {
    .faq-question {
        font-size: 15px;
        padding: 14px 16px;
        text-align: left !important;
    }
}



  .mainfaqs {
    padding: 0em 1em !important;
    margin-top: -8em;
  }

  .faq-title {
    font-size: 36px;
    line-height: 42px;
    text-align: left !important;
  }

  .faq-desc {
    font-size: 16px;
    line-height: 26px;
    margin: 10px auto 25px;
  }

  .faq-question {
    font-size: 15px;
    padding: 14px 16px;
  }

  .faq-answer p {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
    .faq-title {
        font-size: 36px;
        line-height: 42px;
        text-align: center !important;
    }
}