.faq-section {
  padding: 5% 0;
  text-align: center;
  background-color: #F9FBFF;
}

.faq-section .faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 40px auto;
  text-align: left;
}
.faq-item.active h6,
.faq-item.active p {
  color: #fff;
}
.faq-section .faq-item {
  background: #ffffff;
  padding: 40px;
  transition: all 0.3s ease;
  position: relative;
    height: fit-content;		
  box-shadow: 0px 4.51px 14.43px 0px #080f340f;
}

.faq-section .faq-item.active {
  background: var(--secondary-color);
  color: #fff;
}

.faq-section .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-section .toggle-btn {
  border: none;
  background: var(--primary-color);
  color: #fff;
  font-size: 28px;
  width: 36px;
  height: 36px;
  border-radius: 4px;
  cursor: pointer;
  transition: 0.5s;
  display: flex;
  justify-content: center;
}

.faq-section .faq-item:not(.active) .toggle-btn {
  background: #eef2fa;
  color: #000;
}

.faq-section .faq-answer {
  display: none;
  margin-top: 10px;
  color: #000;
}

.faq-section .faq-item.active .faq-answer {
  display: block;
  color: #fff;
}
