:root {
  --qs-bg-primary: #12131a;
  --qs-bg-secondary: #1b1e29;
  --qs-bg-card: #1f263d;
  --qs-bg-card-hover: #232a3d;
  --qs-bg-input: #252833;
  --qs-border: #282d3d;
  --qs-border-light: #31384a;
  --qs-accent: #448aff;
  --qs-accent-dark: #004ce6;
  --qs-text-primary: #c7d4ff;
  --qs-text-secondary: #6880a3;
  --qs-text-muted: #404557;
  --qs-success: #0fc679;
  --qs-error: #ff5252;
  --qs-warning: #ff9800;
}

/* ============================================================
   FAQ SECTION ON INDEX.HTML
   ============================================================ */

.faq-section {
  max-width: 100%;
  overflow-x: hidden;
  width: 100%;
  background: #141827;
  border-top: 1px solid var(--qs-border);
  margin-top: 60px;
  padding: 60px 16px 48px;
  box-sizing: border-box;
}

.faq-section-inner {
  max-width: 860px;
  margin: 0 auto;
  width: 100%;
}

.faq-h1 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--qs-text-primary);
  text-align: center;
  margin: 0 0 8px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

@media (max-width: 640px) {
  .faq-h1 {
    font-size: 1.4rem;
  }
}

.faq-h1 span {
  background: linear-gradient(180deg, #448aff, #004ce6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.faq-subtitle {
  text-align: center;
  color: var(--qs-text-secondary);
  font-size: 0.95rem;
  margin: 0 0 40px;
  line-height: 1.6;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.faq-item {
  background: var(--qs-bg-card);
  border: 1px solid var(--qs-border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.faq-item.faq-open {
  border-color: rgba(68, 138, 255, 0.35);
  background: var(--qs-bg-card-hover);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 12px;
  box-sizing: border-box;
}

.faq-question h2 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--qs-text-primary);
  margin: 0;
  line-height: 1.45;
  flex: 1;
}

.faq-question:hover h2 {
  color: #fff;
}

.faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--qs-bg-input);
  border: 1px solid var(--qs-border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.3s ease, border-color 0.2s ease;
}

.faq-open .faq-icon {
  background: rgba(68, 138, 255, 0.15);
  border-color: var(--qs-accent);
  transform: rotate(180deg);
}

.faq-icon svg {
  display: block;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0, 0, 0.22, 1), opacity 0.3s ease;
  opacity: 0;
}

.faq-item.faq-open .faq-answer {
  max-height: 600px;
  opacity: 1;
}

.faq-answer-inner {
  padding: 0 20px 20px;
  border-top: 1px solid var(--qs-border);
  padding-top: 16px;
}

.faq-answer h3 {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--qs-text-secondary);
  margin: 0;
  line-height: 1.65;
}

.faq-answer h3 a {
  color: var(--qs-accent);
  text-decoration: none;
}

.faq-answer h3 a:hover {
  text-decoration: underline;
}

.faq-footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.faq-footer-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 22px;
  border-radius: 10px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  border: 1px solid transparent;
}

.faq-footer-link.primary {
  background: linear-gradient(180deg, #448aff, #004ce6);
  color: #fff;
  border-color: transparent;
}

.faq-footer-link.primary:hover {
  opacity: 0.85;
}

.faq-footer-link.secondary {
  background: var(--qs-bg-card);
  color: var(--qs-text-primary);
  border-color: var(--qs-border-light);
}

.faq-footer-link.secondary:hover {
  background: var(--qs-bg-card-hover);
  border-color: rgba(68, 138, 255, 0.35);
  color: #fff;
}

/* ============================================================
   SHARED PAGE STYLES (faq/ and about/)
   ============================================================ */

.qs-page-body {
  margin: 0;
  padding: 0;
  background: #12131a;
  color: var(--qs-text-primary);
  font-family: var(--font-geist-sans, Inter, Segoe UI, Roboto, sans-serif);
  min-height: 100vh;
  box-sizing: border-box;
  overflow-x: hidden;
}

.qs-page-body *,
.qs-page-body *::before,
.qs-page-body *::after {
  box-sizing: border-box;
}

/* NAV */

.qs-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  background: rgba(18, 19, 26, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--qs-border);
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 100%;
  overflow-x: hidden;
}

.qs-nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.qs-nav-logo img {
  width: 28px;
  height: 28px;
  display: block;
}

.qs-nav-logo-text {
  font-size: 1rem;
  font-weight: 700;
  color: var(--qs-text-primary);
  letter-spacing: -0.3px;
}

.qs-nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.qs-nav-link {
  padding: 7px 14px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--qs-text-secondary);
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.qs-nav-link:hover {
  background: #252833;
  color: var(--qs-text-primary);
}

.qs-nav-link.active {
  background: rgba(68, 138, 255, 0.12);
  color: var(--qs-accent);
}

.qs-nav-cta {
  padding: 8px 18px;
  background: linear-gradient(180deg, #448aff, #004ce6);
  color: #fff;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.qs-nav-cta:hover {
  opacity: 0.85;
}

@media (max-width: 640px) {
  .qs-nav-links {
    display: none;
  }
  .qs-nav {
    padding: 0 16px;
  }
}

/* PAGE WRAPPER */

.qs-page-wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 48px 24px 80px;
  width: 100%;
  overflow-x: hidden;
}

@media (max-width: 640px) {
  .qs-page-wrapper {
    padding: 32px 16px 60px;
  }
}

/* HERO */

.qs-hero {
  text-align: center;
  padding: 56px 0 48px;
  max-width: 680px;
  margin: 0 auto;
}

.qs-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  background: rgba(68, 138, 255, 0.1);
  border: 1px solid rgba(68, 138, 255, 0.25);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--qs-accent);
  margin-bottom: 20px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.qs-hero-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--qs-text-primary);
  margin: 0 0 14px;
  line-height: 1.15;
  letter-spacing: -0.8px;
}

@media (max-width: 640px) {
  .qs-hero-title {
    font-size: 1.75rem;
  }
}

.qs-hero-title .accent {
  background: linear-gradient(180deg, #448aff, #004ce6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.qs-hero-desc {
  font-size: 1rem;
  color: var(--qs-text-secondary);
  line-height: 1.65;
  margin: 0 auto;
  max-width: 580px;
}

/* SECTION TITLE */

.qs-section-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--qs-text-primary);
  margin: 0 0 20px;
  letter-spacing: -0.3px;
}

.qs-section-divider {
  width: 100%;
  height: 1px;
  background: var(--qs-border);
  margin: 40px 0;
}

/* CARDS */

.qs-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
  margin: 0;
}

@media (max-width: 560px) {
  .qs-cards-grid {
    grid-template-columns: 1fr;
  }
}

.qs-card {
  background: var(--qs-bg-card);
  border: 1px solid var(--qs-border);
  border-radius: 14px;
  padding: 22px 20px;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.qs-card:hover {
  border-color: rgba(68, 138, 255, 0.3);
  background: var(--qs-bg-card-hover);
}

.qs-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(68, 138, 255, 0.1);
  border: 1px solid rgba(68, 138, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  font-size: 1.15rem;
}

.qs-card-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--qs-text-primary);
  margin: 0 0 8px;
}

.qs-card-desc {
  font-size: 0.85rem;
  color: var(--qs-text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* STAT CARDS */

.qs-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 0 0 32px;
}

@media (max-width: 640px) {
  .qs-stats-row {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 400px) {
  .qs-stats-row {
    grid-template-columns: 1fr;
  }
}

.qs-stat-card {
  background: var(--qs-bg-card);
  border: 1px solid var(--qs-border);
  border-radius: 12px;
  padding: 18px 16px;
  text-align: center;
}

.qs-stat-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--qs-accent);
  margin: 0 0 4px;
  letter-spacing: -0.5px;
  display: block;
}

.qs-stat-label {
  font-size: 0.78rem;
  color: var(--qs-text-secondary);
  font-weight: 500;
  display: block;
}

/* CONTENT BLOCKS */

.qs-content-block {
  background: var(--qs-bg-card);
  border: 1px solid var(--qs-border);
  border-radius: 14px;
  padding: 28px 24px;
  margin: 0 0 16px;
}

.qs-content-block h2 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--qs-text-primary);
  margin: 0 0 12px;
  line-height: 1.3;
}

.qs-content-block h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--qs-text-primary);
  margin: 18px 0 8px;
}

.qs-content-block p {
  font-size: 0.875rem;
  color: var(--qs-text-secondary);
  line-height: 1.7;
  margin: 0 0 12px;
}

.qs-content-block p:last-child {
  margin-bottom: 0;
}

.qs-content-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.qs-content-block ul li {
  font-size: 0.875rem;
  color: var(--qs-text-secondary);
  line-height: 1.6;
  padding-left: 18px;
  position: relative;
}

.qs-content-block ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--qs-accent);
}

/* FAQ ACCORDION ON STANDALONE PAGE */

.qs-faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.qs-faq-item {
  background: var(--qs-bg-card);
  border: 1px solid var(--qs-border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.qs-faq-item.qs-faq-open {
  border-color: rgba(68, 138, 255, 0.35);
  background: var(--qs-bg-card-hover);
}

.qs-faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 12px;
}

.qs-faq-question h2 {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--qs-text-primary);
  margin: 0;
  line-height: 1.45;
  flex: 1;
}

.qs-faq-question:hover h2 {
  color: #fff;
}

.qs-faq-chevron {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--qs-bg-input);
  border: 1px solid var(--qs-border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.3s ease, border-color 0.2s ease;
}

.qs-faq-open .qs-faq-chevron {
  background: rgba(68, 138, 255, 0.15);
  border-color: var(--qs-accent);
  transform: rotate(180deg);
}

.qs-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0, 0, 0.22, 1), opacity 0.3s ease;
  opacity: 0;
}

.qs-faq-item.qs-faq-open .qs-faq-answer {
  max-height: 800px;
  opacity: 1;
}

.qs-faq-answer-inner {
  padding: 16px 20px 20px;
  border-top: 1px solid var(--qs-border);
}

.qs-faq-answer-inner p {
  font-size: 0.875rem;
  color: var(--qs-text-secondary);
  line-height: 1.7;
  margin: 0 0 10px;
}

.qs-faq-answer-inner p:last-child {
  margin-bottom: 0;
}

.qs-faq-answer-inner a {
  color: var(--qs-accent);
  text-decoration: none;
}

.qs-faq-answer-inner a:hover {
  text-decoration: underline;
}

/* BUTTONS */

.qs-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  white-space: nowrap;
}

.qs-btn-primary {
  background: linear-gradient(180deg, #448aff, #004ce6);
  color: #fff;
}

.qs-btn-primary:hover {
  opacity: 0.85;
}

.qs-btn-secondary {
  background: var(--qs-bg-card);
  color: var(--qs-text-primary);
  border: 1px solid var(--qs-border-light);
}

.qs-btn-secondary:hover {
  background: var(--qs-bg-card-hover);
  border-color: rgba(68, 138, 255, 0.35);
  color: #fff;
}

.qs-btn-outline {
  background: transparent;
  color: var(--qs-accent);
  border: 1px solid rgba(68, 138, 255, 0.4);
}

.qs-btn-outline:hover {
  background: rgba(68, 138, 255, 0.08);
  border-color: var(--qs-accent);
}

.qs-btn-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* HIGHLIGHT BOX */

.qs-highlight {
  background: rgba(68, 138, 255, 0.06);
  border: 1px solid rgba(68, 138, 255, 0.18);
  border-radius: 12px;
  padding: 20px 22px;
  margin: 16px 0;
}

.qs-highlight p {
  font-size: 0.875rem;
  color: var(--qs-text-secondary);
  line-height: 1.65;
  margin: 0;
}

.qs-highlight strong {
  color: var(--qs-text-primary);
  font-weight: 600;
}

/* TEAM / ABOUT CARDS */

.qs-about-mission {
  background: linear-gradient(135deg, rgba(68, 138, 255, 0.07) 0%, rgba(0, 76, 230, 0.04) 100%);
  border: 1px solid rgba(68, 138, 255, 0.2);
  border-radius: 16px;
  padding: 32px 28px;
  margin: 0 0 24px;
  text-align: center;
}

.qs-about-mission h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--qs-text-primary);
  margin: 0 0 12px;
}

.qs-about-mission p {
  font-size: 0.9rem;
  color: var(--qs-text-secondary);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

/* TAG / CHIP */

.qs-tag {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(68, 138, 255, 0.1);
  color: var(--qs-accent);
  border: 1px solid rgba(68, 138, 255, 0.2);
  margin: 2px;
}

.qs-tag-success {
  background: rgba(15, 198, 121, 0.1);
  color: var(--qs-success);
  border-color: rgba(15, 198, 121, 0.2);
}

.qs-tag-warning {
  background: rgba(255, 152, 0, 0.1);
  color: var(--qs-warning);
  border-color: rgba(255, 152, 0, 0.2);
}

/* BREADCRUMB */

.qs-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--qs-text-secondary);
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.qs-breadcrumb a {
  color: var(--qs-text-secondary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.qs-breadcrumb a:hover {
  color: var(--qs-text-primary);
}

.qs-breadcrumb-sep {
  color: var(--qs-text-muted);
  font-size: 0.75rem;
}

.qs-breadcrumb-current {
  color: var(--qs-accent);
  font-weight: 500;
}

/* FOOTER */

.qs-footer {
  width: 100%;
  background: #141827;
  border-top: 1px solid var(--qs-border);
  padding: 32px 24px;
  margin-top: 40px;
  overflow-x: hidden;
  max-width: 100%;
}

.qs-footer-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.qs-footer-copy {
  font-size: 0.82rem;
  color: var(--qs-text-secondary);
}

.qs-footer-links-row {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.qs-footer-links-row a {
  font-size: 0.82rem;
  color: var(--qs-text-secondary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.qs-footer-links-row a:hover {
  color: var(--qs-text-primary);
}

/* BOTTOM CTA */

.qs-bottom-cta {
  background: linear-gradient(135deg, rgba(68, 138, 255, 0.08) 0%, rgba(0, 76, 230, 0.05) 100%);
  border: 1px solid rgba(68, 138, 255, 0.18);
  border-radius: 16px;
  padding: 36px 24px;
  text-align: center;
  margin: 40px 0 0;
}

.qs-bottom-cta h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--qs-text-primary);
  margin: 0 0 10px;
}

.qs-bottom-cta p {
  font-size: 0.9rem;
  color: var(--qs-text-secondary);
  line-height: 1.6;
  margin: 0 0 22px;
}

.qs-bottom-cta-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* INLINE LINK */

.qs-link {
  color: var(--qs-accent);
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.2s ease;
}

.qs-link:hover {
  opacity: 0.8;
  text-decoration: underline;
}

/* DIVIDER WITH LABEL */

.qs-divider-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 36px 0 24px;
}

.qs-divider-label::before,
.qs-divider-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--qs-border);
}

.qs-divider-label span {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--qs-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  white-space: nowrap;
}

/* TIMELINE (for about page) */

.qs-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
  position: relative;
}

.qs-timeline::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 4px;
  bottom: 4px;
  width: 2px;
  background: var(--qs-border);
}

.qs-timeline-item {
  display: flex;
  gap: 20px;
  padding-bottom: 28px;
  position: relative;
}

.qs-timeline-item:last-child {
  padding-bottom: 0;
}

.qs-timeline-dot {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--qs-bg-card);
  border: 2px solid var(--qs-accent);
  position: relative;
  z-index: 1;
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qs-timeline-dot-inner {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--qs-accent);
}

.qs-timeline-content {
  flex: 1;
  padding-top: 2px;
}

.qs-timeline-year {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--qs-accent);
  letter-spacing: 0.4px;
  text-transform: uppercase;
  margin-bottom: 4px;
  display: block;
}

.qs-timeline-title {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--qs-text-primary);
  margin: 0 0 6px;
}

.qs-timeline-desc {
  font-size: 0.85rem;
  color: var(--qs-text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* NETWORK BADGE */

.qs-network-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 16px 0;
}

.qs-network-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 12px;
  background: var(--qs-bg-card);
  border: 1px solid var(--qs-border);
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--qs-text-primary);
  transition: border-color 0.2s ease;
}

.qs-network-badge:hover {
  border-color: rgba(68, 138, 255, 0.3);
}

.qs-network-badge img {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: block;
}

/* ALERT / NOTICE */

.qs-notice {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 0.85rem;
  line-height: 1.6;
  margin: 16px 0;
}

.qs-notice-info {
  background: rgba(68, 138, 255, 0.07);
  border: 1px solid rgba(68, 138, 255, 0.2);
  color: var(--qs-text-secondary);
}

.qs-notice-info strong {
  color: var(--qs-accent);
}

.qs-notice-success {
  background: rgba(15, 198, 121, 0.07);
  border: 1px solid rgba(15, 198, 121, 0.2);
  color: var(--qs-text-secondary);
}

.qs-notice-success strong {
  color: var(--qs-success);
}

.qs-notice-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

/* RESPONSIVE HELPERS */

@media (max-width: 640px) {
  .qs-page-wrapper {
    padding: 24px 14px 48px;
  }

  .qs-hero {
    padding: 36px 0 32px;
  }

  .qs-hero-title {
    font-size: 1.6rem;
  }

  .qs-bottom-cta {
    padding: 28px 16px;
  }

  .qs-footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .qs-content-block {
    padding: 20px 16px;
  }

  .qs-about-mission {
    padding: 24px 16px;
  }
}