:root {
  --color-primary: #10b981;
  /* Teal color from screenshot */
  --color-accent: #ff4d4d;
  /* Red for disclaimer */
  --color-text: #0f172a;
  --color-text-light: #444444;
  --color-text-dark: #000000;
  --color-border: #e5e5e5;
  --color-bg-light: #f9f9f9;
}

/* FitNova Compliance Site - Shared Styles */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background-color: #ffffff;
  color: var(--color-text);
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ── Branding ── */
/* Monochromatic FitNova (Black) */

/* ── Header ── */
header {
  border-bottom: 1px solid var(--color-border);
  padding: 0 1.5rem;
}

.header-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 1rem 0;
}

.site-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-text);
  text-decoration: none;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.site-logo {
  height: 24px;
  width: auto;
  display: block;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

nav a {
  font-size: 0.875rem;
  color: #333333;
  text-decoration: none;
  white-space: nowrap;
}

nav a:hover {
  text-decoration: underline;
}

nav a.active {
  font-weight: 600;
  color: var(--color-text);
}

/* ── Main ── */
main {
  flex: 1;
  padding: 2.5rem 1.5rem;
}

.content {
  max-width: 720px;
  margin: 0 auto;
}

h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--color-text);
  letter-spacing: -0.02em;
}

h2,
h3,
h4 {
  margin-top: 3rem; /* Increased vertical space for sections */
  margin-bottom: 1.25rem;
  font-weight: 700;
  color: #000000;
}

h2 {
  font-size: 1.4rem;
}

h3 {
  font-size: 1.25rem;
}

h4 {
  font-size: 1.1rem;
}

p {
  color: var(--color-text-dark);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

strong {
  font-weight: 600; /* Adjust this value (100-900) to change weight */
}

.mb-4 {
  margin-bottom: 1.5rem;
}

/* ── Lists ── */
.styled-list {
  list-style: none; /* We use custom bullets for better alignment control */
  margin-bottom: 2.5rem;
}

.styled-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.5rem; /* Generous spacing between main sections */
  color: var(--color-text-dark);
  font-size: 1.1rem;
  line-height: 1.6;
}

.styled-list li::before {
  content: "•";
  position: absolute;
  left: 1rem;
  color: var(--color-text-dark);
  font-weight: 900;
  font-size: 1.1rem;
}

.styled-list li p {
  margin-top: 0.5rem;
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
  color: var(--color-text-dark);
}

/* ── Content Blocks ── */
.accent-block {
  border-left: 4px solid var(--color-accent);
  padding: 1.5rem;
  margin: 2rem 0;
  background-color: var(--color-bg-light);
  border-radius: 4px;
}

.accent-block h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.styled-card {
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
  border: 1px solid var(--color-border);
  background-color: #ffffff;
}

.styled-card h3 {
  margin-top: 0;
  margin-bottom: 1.5rem;
}

/* Support page email */
.contact-block {
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  display: inline-block;
}

.contact-block a {
  color: var(--color-text);
  font-weight: 600;
  text-decoration: none;
}

.contact-block a:hover {
  text-decoration: underline;
}

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

a:hover {
  text-decoration: underline;
}

/* ── Footer ── */
footer {
  border-top: 1px solid var(--color-border);
  padding: 1.25rem 1.5rem;
  font-size: 0.8rem;
  color: var(--color-text-dark);
}

.footer-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links a {
  color: var(--color-text-dark);
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* ── Responsive ── */
@media (max-width: 600px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  h1 {
    font-size: 1.6rem;
  }
}