/* Minimal, clean landing-page styling (no extra HTML wrappers needed) */

:root {
  --maxw: 980px;
}

* { box-sizing: border-box; }

body {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 24px;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  line-height: 1.65;
  color: #111;
}

h1, h2, h3 {
  line-height: 1.25;
  margin: 22px 0 10px;
}

h1 { font-size: 2rem; margin-top: 8px; }
h2 { font-size: 1.5rem; }
h3 { font-size: 1.15rem; }

p { margin: 10px 0; }

a { color: inherit; }

.btn-hover {
    display: block;
    cursor: pointer;
    padding: 12px 16px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    border: 1px solid rgba(0, 0, 0, .18);
    width: 250px;
    text-align: center;
    margin: 25px auto;
}
header {
    text-align: center;
}

header img {
    width: 100px;
    height: auto;
}
.btn-hover:hover { transform: translateY(-1px); }

.color-9 {
  background: #111;
  color: #fff;
}

img {
  max-width: 100%;
  height: auto;
}

blockquote {
  margin: 16px 0;
  padding: 10px 14px;
  border-left: 4px solid rgba(0,0,0,.25);
  background: rgba(0,0,0,.03);
}

.table-responsive {
  width: 100%;
  overflow-x: auto;
  margin: 10px 0 18px;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

th, td {
  text-align: left;
  vertical-align: top;
  padding: 10px 12px;
  border: 1px solid rgba(0,0,0,.15);
}

thead th {
  background: rgba(0,0,0,.04);
}
