.faqs-section {
  padding: 60px;
  background: #F6F6F6;
  width: 100vw;
  margin: auto;
  box-sizing: border-box;
}
.faqs-title {
  text-align: center;
  font-size: 56px;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 50px;
  text-transform: capitalize;
}
.faqs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.faq-item {
  /* padding-bottom: 20px; */
  border-bottom: 1px solid #000000;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
  padding: 10px 0px 20px 5px;
  line-height: 150%;
}

.faq-question:hover {
  background-color: #000000;
  color: #ffffff;
}

.faq-icon {
  transition: transform 0.25s ease;
  font-size: 20px;
}
.faq-answer {
  display: none;
  margin-top: 15px;
  font-size: 16px;
  line-height: 150%;
  color: #000000;
  font-weight: 500;
}
.faqs-view-all {
  text-align: center;
  margin-top: 40px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}
.faqs-view-all a {
    color: #000;
    text-decoration: none;
}

@media (max-width: 768px) {
  .faqs-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .faqs-title {
    font-size: 26px;
  }
}

@media (max-width: 425px) {
  .faqs-section {
    padding: 30px 20px;
  }
}