/* FAQS SOLUTIONS PAGE STYLES */
.faq-page {
  max-width: 860px;
  margin: 0 auto;
  padding: 64px 24px 100px;
}
.faq-page-tag {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: 32px;
}
.faq-list { display: flex; flex-direction: column; }
.faq-entry {
  border-bottom: 1px solid #e2e8f0;
  padding: 28px 0;
}
.faq-entry:first-child { border-top: 1px solid #e2e8f0; }
.faq-q {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  user-select: none;
}
.faq-q h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--teal-dark);
  line-height: 1.5;
  margin: 0;
  transition: color .2s;
}
.faq-q:hover h3 { color: var(--teal-mid); }
.faq-toggle {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--teal-light, #e0f4f3);
  color: var(--teal-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px;
  transition: background .2s, transform .3s;
  margin-top: 2px;
}
.faq-entry.open .faq-toggle {
  background: var(--teal-dark);
  color: #fff;
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .2s;
  padding: 0;
}
.faq-entry.open .faq-a { max-height: 400px; padding-top: 16px; }
.faq-a-inner {
  font-size: 14px;
  color: #444;
  line-height: 1.85;
}
.faq-a-inner p { margin: 0 0 8px; }
.faq-a-inner p:last-child { margin-bottom: 0; }
.faq-a-inner strong { color: #1e293b; }
.faq-a-inner a {
  color: var(--teal-dark);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(0,122,119,0.3);
  transition: border-color .2s;
}
.faq-a-inner a:hover { border-color: var(--teal-dark); }
