/* FAQ Accordion Styles extracted from index.html */

.common-faq__wrapper {
  /* Add wrapper styles if needed */
}

.common-faq__section-container {
  /* Add container styles if needed */
}

.common-faq__title {
  /* Add title styles if needed */
}

.MuiAccordion-root {
  position: relative;
  transition: margin 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
  overflow-anchor: none;
  border-radius: 0;
  padding: 0;
  background: rgba(0, 0, 0, 0);
  color: #FFFFFF;
  box-shadow: none;
  border-bottom: 0;
}

.MuiAccordion-root:before {
  position: absolute;
  left: 0;
  top: -1px;
  right: 0;
  height: 1px;
  content: "";
  opacity: 1;
  background-color: rgba(0, 0, 0, 0.12);
  transition: opacity 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, background-color 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
}

.MuiAccordion-root:first-of-type:before {
  display: none;
}

.MuiAccordion-root.Mui-expanded:before {
  opacity: 0;
}

.MuiAccordion-root.Mui-expanded {
  margin: 16px 0;
}

.MuiAccordionSummary-root {
  display: flex;
  min-height: 48px;
  padding: 0px 16px;
  transition: min-height 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, background-color 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
  background-color: rgba(0, 0, 0, 0);
  border-bottom: 1px solid rgba(0, 0, 0, .125);
  margin-bottom: -1px;
}

.MuiAccordionSummary-root:hover:not(.Mui-disabled) {
  cursor: pointer;
}

.MuiAccordionSummary-root.Mui-expanded {
  min-height: 64px;
}

.MuiAccordionSummary-content {
  display: flex;
  flex-grow: 1;
  margin: 12px 0;
  transition: margin 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
  justify-content: space-between;
  align-items: center;
}

.MuiAccordionSummary-content.Mui-expanded {
  margin: 20px 0;
}

.MuiCollapse-root {
  height: 0;
  overflow: hidden;
  transition: height 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
  visibility: hidden;
}

.MuiCollapse-wrapper {
  display: flex;
  width: 100%;
}

.MuiCollapse-wrapperInner {
  width: 100%;
}

.MuiAccordionDetails-root {
  padding: 8px 16px 16px;
}

.question-text {
  margin: 0;
  font-family: "Roboto", "Helvetica", "Arial", sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.334;
  letter-spacing: 0em;
}

.MuiTypography-body1 {
  margin: 0;
  font-family: "Roboto", "Helvetica", "Arial", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.00938em;
} 