/* Custom - accordion*/
.scrollspy-wrapper {
  background-color: #fdf6f1;
  font-family: "Poppins", sans-serif;
}

/* Sidebar */
.faq-sidebar {
  padding-left: 25px;
  position: relative;
}

/* Nav Links */
.faq-sidebar .nav-link {
  color: #7d746d;
  font-size: 1.35rem;
  line-height: 1.5;
  margin-bottom: 25px;
  font-weight: 400;
  text-decoration: none;
  transition: color 0.3s ease, font-weight 0.3s ease;
  position: relative;
}

.faq-sidebar .nav-link.active,
.faq-sidebar .nav-link:hover {
  color: #000;
  font-weight: 600;
}

/* Custom Scrollbar Track + Thumb */
.scrollbar-track {
  position: absolute;
  left: -10px;
  top: 0;
  width: 3px;
  height: 100%;
  background-color: #e2cfc0;
  border-radius: 2px;
}

.scrollbar-thumb {
  position: absolute;
  left: -10px;
  width: 3px;
  background-color: #a07b65;
  border-radius: 2px;
  transition: top 0.3s ease, height 0.3s ease;
}

/* Content */
.faq-content {
  height: 80vh;
  overflow-y: auto;
  padding-left: 50px;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE */
}
.faq-content::-webkit-scrollbar {
  display: none; /* Hide default scrollbar */
}

.faq-content h3 {
  font-size: 2rem;
  font-family: "Playfair Display", serif;
  margin-bottom: 15px;
	color:#000;
}

.faq-content p {
  font-size: 1.1rem;
  color: #3c3c3c;
  margin-bottom: 80px;
  line-height: 1.6;
	font-family:'Mulish',sans-serif;
}
