:root {
  --bg: #f5f5fe;
  --card: #ffffff;
  --muted: #6b7280;
  --accent: #0e8573;
  --max-width: 980px;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue",
    Arial;
}
html,
body {
  height: 100%;
  margin: 0;
  background: var(--bg);
  color: #0f172a;
}
.page {
  max-width: var(--max-width);
  margin: 32px auto;
  padding: 24px;
}
header.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  background: linear-gradient(90deg, rgba(19, 244, 94, 0.929), rgb(254, 255, 255));
  border-radius: 10px;
}
/* Container that holds the logo (outside the header) and the header itself */
.site-top {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
}

/* Let the header take remaining space when placed next to the logo */
.site-top > header.site-header {
  flex: 1 1 auto;
}
header .brand {
  margin-left: 115px;
  display: flex;
  gap: 16px;
  align-items: center;
}

.logo-image {
  width: 100%;
  height: 100%;
  display: block;
}

/* The outside logo container (larger than the small inline logo) */
.logo-outside {
  width: 72px;
  aspect-ratio: 1 / 1;
  position: absolute;
  top: -20px;
  left: -20px;
}

@media (min-width: 720px) {
  .logo-outside { width: 72px; height: 72px; }
}
h1 {
  margin: 0;
  font-size: 1.25rem;
}
p.lead {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

main.content {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.card {
  background: var(--card);
  padding: 18px;
  border-radius: 10px;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.03);
}
.subsections {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}
.subsections .sub {
  padding: 14px;
  border-radius: 8px;
  background: linear-gradient(180deg, #fff, #fbfffd);
  border: 1px solid rgba(15, 23, 42, 0.03);
}
.sub h3 {
  margin: 0 0 8px;
  font-size: 1rem;
}
.sub p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}
footer {
  margin-top: 20px;
  color: var(--muted);
  font-size: 0.85rem;
  text-align: center;
}
.cta {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}
.intro {
  color: var(--muted);
  margin-top: 8px;
}
@media (min-width: 720px) {
  .page {
    padding: 32px;
  }
}
