.faq-section {
  max-width: 950px;
  margin: 80px auto;
  padding: 0;
  border-radius: 12px;
}

.faq-title {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 30px;
  color: #333;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  border: 1px solid #ddd;
  overflow: hidden;
  transition: all 0.3s ease;
  border-top: 0px solid #f2f2f2;
  border-right: 0px solid #f2f2f2;
  border-bottom: 0px solid #808080;
  border-left: 0px solid #f2f2f2;
  font-size: 25px;
  color: #000000;
  border-radius: 0;
}

.faq-question {
  width: 100%;
  text-align: left;
  cursor: pointer;
  border: none;
  outline: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Cinzel" !important;
  font-weight: 400 !important;
  font-size: 25px;
  padding-top: 15px;
  padding-right: 14px;
  padding-bottom: 15px;
  padding-left: 0px;
  background: transparent;
  border-bottom: 1px solid;
}

.faq-question:hover {
  /* background-color: #000;
  color:#fff; */
}
.faq-item.active button.faq-question {
  /* background: #000000;
    color: #fff; */
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  /* padding: 0 20px; */
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-answer p {
  margin: 16px 0;
  font-family: "Inter";
  color: #444242;
}

.faq-item.active .faq-answer {
  max-height: max-content;
  padding: 16px 0px;
}
.faq-item.active .icon {
  transform: rotate(45deg);
}

.icon {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}
section.faq-section-bkg {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #f7f4f1;
}
.faqwrapper {
  background-color: #fafafa;
  padding-top: 50px;
  padding-right: 80px;
  padding-bottom: 50px;
  padding-left: 80px;
  border-radius: 30px;
}
