/* Mobile FAQ Section */
.mobile-faq {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 12px;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 32px;
}

/* Heading */
.mobile-faq-heading {
  font-family: 'TT Norms Pro', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
  color: var(--page-title-color);
  margin: 0;
  padding: 0 16px;
}

/* FAQ Container */
.mobile-faq-container {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 0px;
  gap: 64px;
  margin: 0 16px;
  width: calc(100% - 32px);
  background: #fcfcfd;
  border: 1px solid var(--table-border-color);
  border-radius: 12px;
}

/* Content */
.mobile-faq-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px 16px;
  gap: 24px;
  width: 100%;
  box-sizing: border-box;
}

/* FAQ Item */
.mobile-faq-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0px;
  width: 100%;
  box-sizing: border-box;
}

.mobile-faq-item:not(:first-child) {
  padding-top: 24px;
  border-top: 1px solid var(--table-border-color);
}

/* FAQ Item Header (Question + Icon) */
.mobile-faq-item-header {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 0px;
  gap: 24px;
  width: 100%;
  cursor: pointer;
}

/* Question Text */
.mobile-faq-question {
  font-family: 'TT Norms Pro', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  color: var(--page-title-color);
  flex: 1;
}

/* Icon Wrapper */
.mobile-faq-icon-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 2px 0px 0px;
  width: 24px;
  height: 26px;
  flex-shrink: 0;
}

.mobile-faq-plus-icon {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

/* Rotate icon when FAQ is open */
.mobile-faq-item.active .mobile-faq-plus-icon {
  transform: rotate(45deg);
}

/* FAQ Answer */
.mobile-faq-answer {
  display: none;
  padding: 16px 0 0 0;
  width: 100%;
}

.mobile-faq-item.active .mobile-faq-answer {
  display: block;
}

.mobile-faq-answer p {
  font-family: 'TT Norms Pro', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--text-secondary);
  margin: 0;
}
