
.faqContainer {
  width: 70vw;
  max-width: none;
  margin: 0 auto;
  padding: 10px;
  background-color: transparent;
  box-shadow: none;
  border-radius: 0;
}

/* Single column layout for screens up to 1279px */
.faqColumns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0; /* No gap needed for single column */
}

/* Two column layout for screens 1280px and wider */
@media (min-width: 1280px) {
  .faqColumns {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

.faqContainer .faqTitle {
  text-align: left;  
  margin-bottom: 20px;
  font-weight: 500;
  font-size:30px;
}

.faqItem {
  margin-bottom: 5px;
}

.faqSeparator {
  border: none;
  height: 1px;
  background-color: #ccc;
  margin: 10px 0;
}

.faqQuestion {
  font-family: inherit;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  text-align: left;
  border: none;
  padding: 10px;
  font-size: 18px;
  cursor: pointer;
  background: none;
  transition: background-color 0.3s;
}

.faqQuestion:hover {
  background-color: transparent;
}

.faqAnswer {
  max-height: 0; /* Start closed */
  overflow: hidden;
  margin-left: 20px;
  font-size: 16px;
  transition: max-height 1s ease-in-out; /* Close swiftly */
}

.faqAnswer.open {
  max-height: 500px; /* A value large enough to contain the answer content */
  transition: max-height 2s ease-in-out; /* Open with animation */
}

.toggleIcon {
  color: #333; /* Default icon color */
  transition: color 0.3s ease-in-out; /* Smooth color transition */
}

.faqQuestion[aria-expanded="true"] .toggleIcon {
  color: #7BA2E1; /* Active icon color */
}