/* RESET (from style.css) */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  background: #0b1d26;
  color: #fff;
  line-height: 1.6;
}


/* Make <ol>/<ul> align with <p> text block */
ol, ul{
  list-style-position: outside;
  margin-left: 0;
  padding-left: 1.25rem;   /* increases indent of wrapped lines */
}

/* optional: keep spacing consistent with paragraphs */
p,
ol,
ul {
  margin: 0 0 1rem 0;
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 3rem 0 3.5rem;
  background: #0b1d26;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: space-between;
}

.footer-brand {
  max-width: 380px;
}

.footer-brand p {
  font-size: 0.9rem;
  opacity: 0.9;
  margin-top: 1rem;
}

.footer-copy {
  margin-top: 1.25rem;
  opacity: 0.6;
  font-size: 0.8rem;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}

.footer-col h3 {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 1rem;
}

.footer-col a {
  display: block;
  font-size: 0.9rem;
  color: #fff;
  text-decoration: none;
  opacity: 0.7;
  margin-bottom: 0.4rem;
}

.footer-col a:hover {
  opacity: 1;
}
