    :root {
      --bg: #ffffff;
      --bg-soft: #f3f4f6;
      --bg-card: #ffffff;
      --text-main: #111827;
      --text-soft: #4b5563;
      --text-muted: #6b7280;
      --border: #e5e7eb;
      --primary: #2563eb;
      --primary-soft: #dbeafe;
    }

    [data-theme="dark"] {
      --bg: #020617;
      --bg-soft: #020617;
      --bg-card: #020617;
      --text-main: #f9fafb;
      --text-soft: #e5e7eb;
      --text-muted: #9ca3af;
      --border: #1f2937;
      --primary: #2563eb;
      --primary-soft: #1d4ed8;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    body {
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background: var(--bg);
      color: var(--text-main);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }
    img { max-width: 100%; display: block; }
    a { text-decoration: none; color: inherit; }

    .container {
      width: min(1200px, 92%);
      margin: 0 auto;
    }

    /* HEADER / NAV 
    header {
      border-bottom: 1px solid var(--border);
      background: var(--bg);
      position: sticky;
      top: 0;
      z-index: 20;
    }
    .nav {
      position: relative;
      display: flex;
      align-items: center;
      padding: 10px 0;
      gap: 12px;
    }
    .logo {
      display: flex;
      align-items: center;
      gap: 8px;
      font-weight: 700;
      font-size: 1.1rem;
      white-space: nowrap;
    }
    .logo-badge {
      width: 26px;
      height: 26px;
      border-radius: 8px;
      background: var(--bg);
    }
    .nav-center {
      flex: 1;
      display: flex;
      justify-content: center;
    }
    .nav-links {
      list-style: none;
      display: flex;
      gap: 22px;
      font-size: 0.95rem;
      align-items: center;
    }
    .nav-links a {
      padding: 4px 0;
      color: var(--text-soft);
    }
    .nav-links a:hover,
    .nav-links a:focus-visible {
      color: var(--primary);
      border-bottom: 2px solid var(--primary);
    }
    .nav-right {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-left: auto;
    }
    #theme-toggle {
      padding: 6px 14px;
      font-size: 0.85rem;
      border-radius: 999px;
      border: 1px solid var(--primary);
      background: var(--primary-soft);
      color: var(--primary);
      cursor: pointer;
      white-space: nowrap;
    }
    [data-theme="dark"] #theme-toggle {
      background: var(--primary);
      color: #ffffff;
      border-color: var(--primary);
    }
    #nav-toggle {
      display: none;
      border: 1px solid var(--primary);
      background: var(--bg);
      border-radius: 6px;
      padding: 4px 6px;
      cursor: pointer;
    }
    #nav-toggle span {
      display: block;
      width: 18px;
      height: 2px;
      background: var(--primary);
      margin: 3px 0;
    }-->

    /* HERO */
    .hero {
      padding: 36px 0 48px;
      text-align: center;
    }
    .hero h1 {
      font-size: clamp(2rem, 4vw, 2.6rem);
      font-weight: 800;
      margin-bottom: 10px;
    }
    .hero .highlight { color: var(--primary); }
    .hero p {
      max-width: 720px;
      margin: 0 auto 22px;
      font-size: 0.98rem;
      color: var(--text-soft);
    }
    .hero-actions {
      display: flex;
      justify-content: center;
      gap: 10px;
      flex-wrap: wrap;
    }
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 10px 22px;
      border-radius: 999px;
      font-size: 0.9rem;
      font-weight: 600;
      border: 1px solid transparent;
      cursor: pointer;
    }
    .btn-primary { background: var(--primary); color: #fff; }
    .btn-primary:hover { opacity: 0.9; }
    .btn-outline {
      border-color: var(--border);
      color: var(--text-soft);
      background: var(--bg);
    }
    .btn-outline:hover {
      background: var(--primary-soft);
      color: #fff;
      border-color: var(--primary-soft);
    }

    /* TOOLS SECTION */
    .tools-section {
      background: var(--bg-soft);
      padding: 48px 0 56px;
    }
    .tools-section .section-title {
      text-align: center;
      margin-bottom: 6px;
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      color: var(--text-muted);
    }
    .tools-section h2 {
      text-align: center;
      font-size: 1.4rem;
      margin-bottom: 24px;
    }
    .tool-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
      gap: 18px;
    }
    .tool-card {
      background: var(--bg-card);
      border-radius: 16px;
      padding: 16px 14px 18px;
      border: 1px solid var(--border);
      text-align: center;
      display: flex;
      flex-direction: column;
      height: 100%;
    }
    .tool-card h3 {
      font-size: 0.95rem;
      font-weight: 600;
      margin-bottom: 10px;
    }
    .tool-preview {
      border: 1px solid var(--border);
      overflow: hidden;
      margin-bottom: 12px;
    }

    .tool-preview {
    height: 230px;           /* your chosen height */
    background: #ffffff;
    border-radius: none;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    }

    .tool-preview img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
    }
    
    .tool-card p {
      font-size: 0.84rem;
      color: var(--text-soft);
      margin-bottom: 12px;
      flex-grow: 1;
    }
    .tool-card .tool-btn {
      background: var(--primary);
      color: #fff;
      border-radius: 999px;
      padding: 8px 16px;
      font-size: 0.86rem;
      font-weight: 600;
      border: none;
      cursor: pointer;
      display: inline-block;
    }
    .tool-card .tool-btn:hover { opacity: 0.9; }

    /* HOW IT WORKS */
    .how-section {
      padding: 48px 0 28px;
      background: var(--bg);
    }
    .how-section h2 {
      text-align: center;
      font-size: 1.4rem;
      margin-bottom: 12px;
    }
    .how-section .lead {
      text-align: center;
      max-width: 720px;
      margin: 0 auto 22px;
      font-size: 0.95rem;
      color: var(--text-soft);
    }
    .how-steps {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
      gap: 18px;
    }
    .step {
      background: var(--bg-soft);
      border-radius: 16px;
      padding: 16px 14px;
      border: 1px solid var(--border);
    }
    .step-number {
      width: 26px;
      height: 26px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.8rem;
      font-weight: 700;
      background: var(--primary);
      color: #fff;
      margin-bottom: 6px;
    }
    .step h3 { font-size: 0.95rem; margin-bottom: 4px; }
    .step p { font-size: 0.88rem; color: var(--text-soft); }

    /* POWERFUL FEATURES */
    .features-section {
      padding: 56px 0 60px;
      background: var(--bg);
    }
    .features-section h2 {
      text-align: center;
      font-size: 1.5rem;
      margin-bottom: 6px;
    }
    .features-section .sub {
      text-align: center;
      font-size: 0.94rem;
      max-width: 640px;
      margin: 0 auto 26px;
      color: var(--text-soft);
    }
    .feature-grid-2 {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }
    .feature-card-2 {
      background: var(--bg-soft);
      border-radius: 16px;
      padding: 16px 14px;
      border: 1px solid var(--border);
    }
    .feature-icon {
      width: 30px;
      height: 30px;
      border-radius: 10px;
      background: var(--primary-soft);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      margin-bottom: 8px;
      color: var(--primary);
    }
    .feature-card-2 h3 { font-size: 0.96rem; margin-bottom: 4px; }
    .feature-card-2 p { font-size: 0.88rem; color: var(--text-soft); }
    @media (max-width: 900px) {
      .feature-grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    }
    @media (max-width: 600px) {
      .feature-grid-2 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
    }

    /* SEO CONTENT */
    .seo-section {
      padding: 48px 0 40px;
      background: var(--bg);
    }
    .seo-section h2 { font-size: 1.4rem; margin-bottom: 10px; }
    .seo-section h3 {
      font-size: 1.05rem;
      margin-top: 16px;
      margin-bottom: 6px;
    }
    .seo-section h4 {
      font-size: 0.98rem;
      margin-top: 12px;
      margin-bottom: 4px;
    }
    .seo-section p,
    .seo-section ul {
      font-size: 0.9rem;
      color: var(--text-soft);
    }
    .seo-section ul {
      margin-left: 1rem;
      margin-bottom: 10px;
    }

    /* TOOL DETAILS - SIMPLE TEXT (NO BORDERS, NO CARDS) */
    .tool-detail-section {
      padding: 24px 0 52px;
      background: var(--bg);
      color: var(--text-main);
    }
    .tool-detail-section h2 {
      font-size: 1.4rem;
      margin-bottom: 10px;
    }
    .tool-detail-section p.intro {
      font-size: 0.95rem;
      color: var(--text-soft);
      margin-bottom: 20px;
      max-width: 900px;
    }
    .tool-detail-list {
      list-style: none;
      padding: 0;
      margin: 0;
      max-width: 980px;
    }
    .tool-detail-item {
      padding: 10px 0;
    }
    .tool-detail-title {
      display: flex;
      gap: 10px;
      align-items: center;
      font-weight: 700;
      font-size: 1rem;
      margin-bottom: 4px;
    }
    .tool-detail-emoji {
      width: 34px;
      height: 34px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 1.15rem;
    }
    .tool-detail-desc {
      font-size: 0.95rem;
      color: var(--text-soft);
      line-height: 1.6;
      margin-left: 44px;
    }
    @media (max-width: 520px) {
      .tool-detail-desc { margin-left: 0; }
      .tool-detail-emoji { width: 28px; height: 28px; font-size: 1rem; }
    }

    /* FAQ SECTION */
    .faq-section {
      padding: 24px 0 54px;
      background: var(--bg);
      border-top: 1px solid var(--border);
    }
    .faq-section .faq-heading {
      font-size: 1.4rem;
      margin-bottom: 8px;
    }
    .faq-section .faq-sub {
      font-size: 0.92rem;
      color: var(--text-soft);
      margin-bottom: 20px;
    }
    .faq-list {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
    .faq-item {
      border-radius: 12px;
      border: 1px solid var(--border);
      background: var(--bg-card);
      overflow: hidden;
    }
    .faq-header {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 12px 14px;
      cursor: pointer;
    }
    .faq-icon-box {
      width: 32px;
      height: 32px;
      border-radius: 10px;
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      background: var(--bg-soft);
    }
    .faq-title {
      flex: 1;
      font-size: 0.95rem;
      font-weight: 600;
      color: var(--text-main);
    }
    .faq-toggle {
      font-size: 1.2rem;
      color: var(--text-muted);
    }
    .faq-answer {
      display: none;
      padding: 0 14px 12px 58px;
      font-size: 0.9rem;
      color: var(--text-soft);
    }
    .faq-item.open .faq-answer { display: block; }
    .faq-item.open .faq-toggle { transform: rotate(180deg); }

    /* FOOTER 
    footer {
      background: var(--bg-soft);
      color: var(--text-main);
      padding: 32px 0 16px;
      border-top: 2px solid var(--primary);
    }
    .footer-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 24px;
      margin-bottom: 18px;
    }
    .footer-title {
      font-weight: 700;
      margin-bottom: 8px;
      font-size: 0.95rem;
    }
    .footer-text {
      font-size: 0.84rem;
      color: var(--text-soft);
    }
    .footer-links ul {
      list-style: none;
      padding: 0;
    }
    .footer-links li {
      margin-bottom: 4px;
      font-size: 0.84rem;
    }
    .footer-links a { color: var(--primary); }
    .social-row {
      display: flex;
      gap: 6px;
      margin-top: 6px;
    }
    .social-icon {
      width: 22px;
      height: 22px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #e5e7eb;
      font-size: 0.75rem;
      color: #111827;
    }
    .footer-bottom {
      border-top: 1px solid var(--border);
      padding-top: 8px;
      font-size: 0.78rem;
      color: var(--text-muted);
      text-align: center;
    }

    /* MOBILE NAV 
    @media (max-width: 768px) {
      #nav-toggle { display: inline-block; }
      .nav-center { flex: 0 0 auto; }
      .nav-links {
        position: fixed;
        top: 56px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--bg);
        border-top: 1px solid var(--border);
        padding: 30px 24px;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 22px;
        overflow-y: auto;
        z-index: 1000;
      }
      .nav-links.show { display: flex; }
    }*/
  



    /* =========================
       THEME (LIGHT / DARK ONLY)
       ========================= */
    :root[data-theme="light"] {
      color-scheme: light;
      --st-bg: white;
      --st-surface: #ffffff;
      --st-surface-soft: #f3f4f6;
      --st-text-main: #111827;
      --st-text-muted: #4b5563;
      --st-border: #e5e7eb;
      --st-accent: #2563eb;
      --st-accent-strong: #2563eb;
      --st-nav-bg: rgba(255, 255, 255, 0.98);
      --st-footer-bg: #f9fafb;
    }

    :root[data-theme="dark"] {
      color-scheme: dark;
      --st-bg: #020617;
      --st-surface: #020617;
      --st-surface-soft: #020617;
      --st-text-main: #e5e7eb;
      --st-text-muted: #9ca3af;
      --st-border: #1e293b;
      --st-accent: #2563eb;
      --st-accent-strong: #2563eb;
      --st-nav-bg: rgba(15, 23, 42, 0.98);
      --st-footer-bg: #020617;
    }

    :root:not([data-theme]) {
      color-scheme: light;
    }
    
    .st-header a,
.st-header button {
  font-size: 17px;   /* matches content paragraphs */
}
.st-header-brand {
  font-size: 20px;   /* looks nice next to 28px titles */
}


    /* =========================
       HEADER / NAV
       ========================= */
    .st-header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: var(--st-nav-bg);
      backdrop-filter: blur(18px);
      border-bottom: 1px solid var(--st-border);
    }

.st-header-inner {
  width: 100%;             /* full width like footer */
  max-width: none;         /* remove limit */
  margin: 0;               /* remove centering */
  padding: 0.65rem 1rem;   /* keep spacing */
  display: flex;
  align-items: center;
  gap: 0.75rem;
}


    /* left, center, right zones */
    .st-header-left {
      flex: 0 0 auto;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .st-header-center {
      flex: 1 1 auto;
      display: flex;
      justify-content: center;
    }

    .st-header-right {
      flex: 0 0 auto;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      margin-left: auto;           /* <— this line makes the buttons go to the far right */

    }

    /* Brand */
/* Brand container */
.st-brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
}

/* Logo wrapper */
.st-brand-logo {
  width: 34px;      /* adjust logo size here */
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Logo image */
.st-brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;   /* keeps logo clean */
  border-radius: 6px;    /* optional, matches your design */
}



    .st-brand-main {
      font-weight: 700;
      font-size: 1.1rem;
    }

    .st-brand-sub {
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      color: var(--st-text-muted);
    }

    /* Center nav */
    .st-nav {
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
    }

    .st-nav-item {
      position: relative;
    }

/* =========================
   NAV LINK HOVER + ACTIVE
   (blue text + underline)
   ========================= */

.st-nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-size: 0.9rem;
  font-size: 18px;
  font-weight: 600;
  color: var(--st-text-muted);
  background: transparent;
  cursor: pointer;
  transition:
    color 0.18s ease-out,
    background 0.18s ease-out,
    border-color 0.18s ease-out;
}

/* blue underline bar */
.st-nav-link::after {
  content: "";
  position: absolute;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0.1rem;
  height: 2px;
  border-radius: 999px;
  background: var(--st-accent);
  transform: scaleX(0);
  transform-origin: center;
  opacity: 0;
  transition:
    transform 0.18s ease-out,
    opacity 0.18s ease-out;
}

/* hover effect */
.st-nav-link:hover {
  color: var(--st-accent);
  background: transparent;
  border-color: transparent;
}

.st-nav-link:hover::after {
  transform: scaleX(1);
  opacity: 1;
}

/* mark current page link with this class in HTML */
.st-nav-link.st-is-active {
  color: var(--st-accent);
}

.st-nav-link.st-is-active::after {
  transform: scaleX(1);
  opacity: 1;
}


    .st-dropdown-toggle::after {
      content: "▾";
      font-size: 0.7rem;
      opacity: 0.8;
    }

.st-dropdown-menu {
    font-size: 16px;
    font-weight: 500;
    position: absolute;
    top: calc(100% - 2px);   /* pulls the menu upward by 2px */
    left: 0;
    min-width: 240px;
    background: var(--st-surface);
    border-radius: 1rem;
    border: 1px solid var(--st-border);
    box-shadow: 0 18px 35px rgba(15, 23, 42, 0.25);
    padding: 0.45rem;
    display: none;
    z-index: 40;
}



.st-nav-item:hover > .st-dropdown-menu,
.st-dropdown-menu:hover {
  display: block;
}




    .st-dropdown-link {
      display: block;
      padding: 0.45rem 0.75rem;
      border-radius: 0.75rem;
      text-decoration: none;
      font-size: 0.86rem;
      color: var(--st-text-muted);
      transition: all 0.16s ease, transform 0.12s ease;
    }

    .st-dropdown-link span {
      display: block;
    }

    .st-dropdown-link small {
      display: block;
      font-size: 0.72rem;
      opacity: 0.8;
    }

    .st-dropdown-link:hover {
      background: var(--st-accent);
      color: var(--st-bg);
      transform: translateX(2px);
    }

    /* Theme toggle (right side) */
/* base look (light + dark) */
.st-theme-toggle {
  border-radius: 8px;
  padding: 0.35rem 1.1rem;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid rgba(37, 99, 235, 0.45);
  background: rgba(37, 99, 235, 0.06);
  color: #2563eb;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition:
    background 0.18s ease,
    color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.08s ease;
}

/* hover in light mode */
.st-theme-toggle:hover {
  background: #2563eb;
  color: #ffffff;
  box-shadow:
    0 0 0 1px rgba(37, 99, 235, 0.16),
    0 12px 28px rgba(37, 99, 235, 0.45);
  transform: translateY(-1px);
}

/* dark mode colors */
:root[data-theme="dark"] .st-theme-toggle {
  background: rgba(15, 23, 42, 0.96);
  color: #bfdbfe;
  border-color: rgba(129, 140, 248, 0.75);
}

/* hover in dark mode */
:root[data-theme="dark"] .st-theme-toggle:hover {
  background: #2563eb;
  color: #e5e7eb;
  box-shadow:
    0 0 0 1px rgba(37, 99, 235, 0.55),
    0 14px 34px rgba(15, 23, 42, 0.95);
}


    /* Mobile menu button (right side) */
    .st-nav-toggle {
      display: none;
      border-radius: 999px;
      border: 1px solid var(--st-border);
      padding: 0.35rem 0.7rem;
      font-size: 0.9rem;
      background: transparent;
      cursor: pointer;
    }

    /* Mobile nav container */
    .st-nav-mobile {
      display: none;
    }











.st-footer a,
.st-footer p {
  font-size: 16.5px;
}
.st-footer-title {
  font-size: 18px;
}






    /* =========================
       INFO SECTION (above footer)
       ========================= */
    .st-info-wrapper {
      background: var(--st-bg);
      padding: 1.5rem 1rem 0;
    }

    .st-info-card {
      max-width: 90%;
      margin: 0 auto 1.5rem;
      background: var(--st-surface);
      border-radius: 1.5rem;
      border: 1px solid var(--st-border);
      padding: 1.5rem 1.75rem;
    }

    .st-info-title {
      font-weight: 600;
      font-size: 19px;
      margin-bottom: 0.4rem;
    }

    .st-info-text {
      font-size: 17px;
      line-height: 1.5;
      color: var(--st-text-muted);
    }

    /* =========================
       FOOTER
       ========================= */
.st-footer-wrapper {
  width: 100%;
  margin: 0;
  padding: 0;
  background: var(--st-footer-bg);
  border-top: 1px solid var(--st-border); /* optional, to match header border-bottom */
}


.st-footer {
  width: 100%;
  max-width: none;
  margin: 0;
  border-radius: 0;   /* remove rounded area */
  padding: 2rem 2.2rem 1.6rem; /* keep padding if you want inside spacing */
  border: none;       /* optional: looks cleaner full-width */
  background: var(--st-surface);
}


    .st-footer-grid {
      display: grid;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      gap: 1.75rem;
      font-size: 0.88rem;
    }

    .st-footer-title {
      font-weight: 600;
      margin-bottom: 0.65rem;
    }

    .st-footer-links {
      display: flex;
      flex-direction: column;
      gap: 0.35rem;
    }

    .st-footer-links a {
      text-decoration: none;
      color: var(--st-text-muted);
      transition: color 0.15s ease, transform 0.12s ease;
    }

    .st-footer-links a:hover {
      color: var(--st-accent);
      transform: translateX(2px);
    }

    .st-footer-icon {
      margin-right: 0.3rem;
    }

    .st-footer-bottom {
      margin-top: 1.4rem;
      text-align: center;
      font-size: 0.78rem;
      color: var(--st-text-muted);
    }

    /* =========================
       RESPONSIVE
       ========================= */
    @media (max-width: 1024px) {
      .st-footer-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }
    }

    @media (max-width: 768px) {
      .st-header-inner {
        padding-inline: 0.9rem;
      }

      /* hide center nav, show mobile button */
      .st-header-center {
        display: none;
      }

      .st-nav-toggle {
        display: inline-flex;
      }

    /* FULLSCREEN OVERLAY NAV */
      .st-nav-mobile {
        display: none;                     /* will be turned on via [data-open="true"] */
        position: fixed;
        top: 3.2rem;                       /* below sticky header (approx height) */
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--st-nav-bg);
        z-index: 40;
      }

      .st-nav-mobile-inner {
        max-width: 1120px;
        margin: 0 auto;
        padding: 1.2rem 1.2rem 1.5rem;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        overflow-y: auto;
      }

      .st-nav-mobile a,
      .st-nav-mobile button {
        width: 100%;
        text-align: left;
        justify-content: flex-start;
      }

      .st-nav-mobile-group-title {
        margin-top: 0.4rem;
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: var(--st-text-muted);
      }

      .st-header[data-open="true"] + .st-nav-mobile {
        display: block;
      }

      .st-footer {
        padding-inline: 1.4rem;
      }

      .st-footer-grid {
        max-width: 90%;
        margin: 0 auto;
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .st-info-card {
        padding: 1.25rem 1.2rem;
      }
    }

    @media (max-width: 520px) {
      .st-footer-grid {
        max-width: 90%;
        margin: 0 auto;
        grid-template-columns: minmax(0, 1fr);
      }
    }

    /* prevent scrolling when mobile menu is open */
body.st-no-scroll {
  overflow: hidden;
}
