@import url('https://fonts.googleapis.com/css2?family=Cabin:wght@400;500;600;700&display=swap');

:root {
  --bg: #fff;
  --fg: #111;
  --muted: #555;
  --faint: #888;
  --border: #eee;
  --accent: #111;
  --font: "Cabin", system-ui, -apple-system, sans-serif;
  --content-max: 960px;
}

html[data-theme="dark"] {
  --bg: #141414;
  --fg: #f5f5f5;
  --muted: #aaa;
  --faint: #999;
  --border: #333;
}

html[data-theme="dark"] body { background: var(--bg); }
html[data-theme="dark"] .AboutHeader { border-bottom-color: #333; }
html[data-theme="dark"] .AboutFooter { border-top-color: #333; }
html[data-theme="dark"] .AboutHeader__brandIcon { background: rgba(255,255,255,0.08); color: var(--fg); }

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: var(--font);
  color: var(--fg);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--fg);
  text-decoration: none;
}

/* Header */
.AboutHeader {
  padding: 12px 0;
  position: sticky;
  top: 0;
  background: var(--bg);
  z-index: 100;
}

.AboutHeader__inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.AboutHeader__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  text-decoration: none;
  color: var(--fg);
}

.AboutHeader__brand:hover {
  color: var(--fg);
  text-decoration: none;
}

.AboutHeader__brandIcon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f3f4f6;
  color: #111;
  flex-shrink: 0;
}

.AboutHeader__brandIcon img {
  width: 19px;
  height: 19px;
}

.AboutHeader__brandName {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.3px;
}

.AboutHeader__nav {
  display: flex;
  align-items: center;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.AboutHeader__nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  position: relative;
}

.AboutHeader__nav a:hover {
  color: var(--fg);
}

.AboutHeader__nav a[aria-current="page"] {
  color: var(--fg);
}

.AboutHeader__nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--fg);
  border-radius: 1px;
}

/* Hero */
.AboutHero {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.AboutHero__bg {
  position: absolute;
  inset: 0;
  background-image: url('https://scontent.fbhx4-2.fna.fbcdn.net/v/t39.30808-6/705567805_122180626946394702_4162462291553386570_n.jpg?_nc_cat=109&ccb=1-7&_nc_sid=cc71e4&_nc_ohc=xomzRJu79BkQ7kNvwHZeMQv&_nc_oc=AdqH3B1m-TqTEyuXxtu-cH3h4TQp3Oo8owUTWoemk6bq0zESg16_kb0wQ0_wNoLMq-s&_nc_zt=23&_nc_ht=scontent.fbhx4-2.fna&_nc_gid=mAd3AEM_VijfrfRPnj5ZkA&_nc_ss=7b2a8&oh=00_Af7A4t-XSS2A_4-HJg9vz9G-emQGQLL8uZ-buUS61srbZA&oe=6A1A92CF');
  background-size: cover;
  background-position: center;
  filter: brightness(0.4);
}

.AboutHero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
}

.AboutHero__content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}

.AboutHero__title {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  text-align: center;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

/* Main content */
.AboutMain {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 48px 20px 80px;
}

.AboutSection {
  margin-bottom: 56px;
}

.AboutSection:last-child {
  margin-bottom: 0;
}

.AboutSection__title {
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 20px;
  line-height: 1.2;
  letter-spacing: -0.3px;
  color: var(--fg);
}

.AboutSection__subtitle {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 12px;
  line-height: 1.3;
  color: var(--fg);
}

.AboutSection__text {
  font-size: 16px;
  color: var(--muted);
  margin: 0 0 16px;
  line-height: 1.7;
}

.AboutSection__text:last-child {
  margin-bottom: 0;
}

.AboutSection__text a {
  color: var(--fg);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.AboutSection__text a:hover {
  color: var(--muted);
}

/* FAQ */
.FAQItem {
  padding: 16px 0;
}

.FAQItem__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  text-align: left;
  font: inherit;
}

.FAQItem__question {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--fg);
  margin: 0;
}

.FAQItem__icon {
  font-size: 14px;
  color: var(--muted);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.FAQItem__answer {
  font-size: 15px;
  color: var(--muted);
  margin: 12px 0 0 0;
  line-height: 1.7;
}

.FAQItem__answer p {
  margin: 0;
}

.FAQItem__answer a {
  text-decoration: underline;
  text-underline-offset: 3px;
  color: var(--fg);
}

.FAQItem__answer a:hover {
  color: var(--muted);
}

/* Terms */
.TermsSection {
  margin-bottom: 40px;
}

.TermsSection__title {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 12px;
  color: var(--fg);
}

.TermsSection__text {
  font-size: 15px;
  color: var(--muted);
  margin: 0 0 12px;
  line-height: 1.7;
}

.TermsSection__text:last-child {
  margin-bottom: 0;
}

.TermsSection__list {
  margin: 0;
  padding: 0 0 0 20px;
}

.TermsSection__list li {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 8px;
  line-height: 1.6;
}

.TermsSection__list li:last-child {
  margin-bottom: 0;
}

/* Dark mode */
html[data-theme="dark"] .FAQItem__answer { color: var(--muted); }
html[data-theme="dark"] .TermsSection__text { color: var(--muted); }
html[data-theme="dark"] .TermsSection__list li { color: var(--muted); }

/* Footer */
.AboutFooter {
  padding: 24px 0;
}

.AboutFooter__inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.AboutFooter__copy {
  font-size: 13px;
  color: var(--faint);
  margin: 0;
}

.AboutFooter__links {
  display: flex;
  align-items: center;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.AboutFooter__links a {
  font-size: 13px;
  color: var(--faint);
}

.AboutFooter__links a:hover {
  color: var(--fg);
}

/* Responsive */
@media (max-width: 720px) {
  .AboutHero {
    height: 200px;
  }

  .AboutHero__title {
    font-size: 24px;
  }

  .AboutHeader__inner {
    padding: 0 14px;
  }

  .AboutHeader__nav {
    gap: 12px;
  }

  .AboutMain {
    padding: 32px 14px 60px;
  }

  .AboutSection__title {
    font-size: 26px;
  }

  .AboutSection__subtitle {
    font-size: 18px;
  }

  .AboutSection__text {
    font-size: 15px;
  }

  .AboutFooter__inner {
    padding: 0 14px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
