.ls-accordion-main-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 40px; /* space between columns */
  flex-wrap: wrap;
  max-width: 1140px;
  margin: 0 auto;
}

/* Mobile (typically up to 768px or 600px) */
@media (max-width: 768px) {
  .ls-accordion-main-wrapper {
    flex-direction: column;
    gap: 15px; /* optional adjustment */
  }
}

.ls-accordion-column {
  flex: 1 1 45%; /* grow, shrink, basis */
  display: flex;
  flex-direction: column;
  gap: 20px; /* space between accordions inside a column */
}

/* Accordion item styling */
.ls-accordion-item {
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0px 0px 46px 0px rgba(0, 0, 0, 0.15);
}

.ls-accordion-button {
  width: 100%;
  padding: 15px 25px 15px 20px;
  background-color: #f7f7f7;
  border: none;
  text-align: left;
  font-family: "Baskerville", "Baskerville", serif;
  font-weight: 600;
  font-size: 20px;
  cursor: pointer;
  color: rgb(34, 34, 34);
  /* position: relative; */
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
  height: 72px;
  letter-spacing: 0.53px;
  line-height: 24px;
}

/* Adjust height for tablets and smaller devices */
@media (max-width: 1024px) {
  .ls-accordion-button {
    height: 63px;
  }
}

.ls-accordion-arrow {
  transition: transform 0.3s ease, color 0.3s ease;
  font-size: 15px;
  line-height: 25.95px;
}

/* Active accordion button styles */
.ls-accordion-button.active {
  background-color: color-mix(
    in srgb,
    #b39c68 15%,
    transparent
  ); /* background color change */
  color: #b39c68; /* text color change */
}

.ls-accordion-button.active .ls-accordion-arrow {
  transform: rotate(180deg); /* Rotate the arrow to up */
}

.ls-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 20px;
  background: #fff;
  color: rgb(0, 0, 0);
  font-family: "Montserrat", "Baskerville", sans-serif;
  font-size: 16px;
  letter-spacing: 0.4px;
  line-height: 28px;
  /* padding: 15px 30px 30px 30px; */
}

.ls-accordion-button.active + .ls-accordion-content {
  /* padding: 15px 30px 30px 30px; */
  max-height: 500px; /* Adjust based on your content */
}

.ls-more_info {
  text-align: right;
  text-decoration: underline;
  margin-bottom: 0;
  padding-bottom: 15px;
}

.ls-faq-pagination {
  text-align: center;
  padding-top: 36px;
  font-size: 18px;
}

.ls-search_form {
  color: #000 !important;
  width: 100% !important;
  min-height: 50px;
  position: relative;
  padding: 16px !important;
  border-radius: 9999px !important;
  box-shadow: none !important;
  border: 1px solid #1a69cb !important;
  font-size: 16px !important;
  font-style: normal !important;
  font-weight: 500 !important;
  line-height: 1.21 !important;
  height: 35px !important;
}

.ls-faq-search-btn {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: #555;
  font-size: 18px;
}

.ls-faq-page-link.active {
  color: #b39c68;
  font-weight: bold;
}

@media (min-width: 1024px) {
  .ls-accordion-main-wrapper .ls-accordion-column:only-child {
    max-width: 48.5%;
  }
}

@media (max-width: 767px) {
  .ls-accordion-button,
  .ls-accordion-content {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0.2px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .ls-accordion-button,
  .ls-accordion-content {
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 0.4px;
  }
}

.ls-faq_title {
  padding: 3px 8px !important;
  font-size: 1.7em;
  line-height: 100% !important;
  height: 1.7em;
  width: 100%;
  outline: 0;
  margin: 0 0 14px;
  background-color: #fff;
}

.ls-accordion-content-div{
  padding-top: 15px;
  margin-bottom: 26px;
}
