@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap');

:root {
  --bg-main: #F7F8FA;
  --text-main: #1F2933;
  --accent-main: #0F4C5C;
  --text-muted: #6B7280;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.65;
}

/* HEADER */
header {
  max-width: 1140px;
  margin: 0 auto;
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(15, 76, 92, 0.06);
}

.logo img {
  height: 64px;
}

nav a {
  text-decoration: none;
  color: var(--text-muted);
  margin-left: 16px;
  font-size: 14px;
}

nav a.active,
nav a:hover {
  color: var(--accent-main);
}

.lang-switch {
  margin-left: 24px;
}

/* MAIN */
main {
  max-width: 1140px;
  margin: 0 auto;
  padding: 48px 24px;
}

/* HERO */
.hero {
  max-width: 760px;
  margin: 0 auto 100px auto;
  text-align: center;
}

/* HERO must NOT use the section grid */
section.hero {
  display: block;
  text-align: center;
}

.hero h1 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 8px;
}

.hero h2 {
  font-size: 20px;
  font-weight: 400;
  color: var(--accent-main);
  margin-top: 0;
}

.qualifier {
  font-size: 17px;
  font-weight: 500;
  margin-top: 28px;
}

.subtext {
  font-size: 15px;
  color: var(--text-muted);
  margin-top: 12px;
}

/* SECTIONS */
section {
  display: grid;
  grid-template-columns: 260px 1fr;
  column-gap: 40px;
  margin-bottom: 72px;
  padding-top: 48px;
  border-top: 1px solid rgba(15, 76, 92, 0.06);
}

section:first-of-type {
  border-top: none;
  padding-top: 0;
}

h3 {
  font-size: 22px;
  font-weight: 500;
  color: var(--accent-main);
  border-left: 3px solid rgba(15, 76, 92, 0.15);
  padding-left: 16px;
}

.section-content {
  max-width: 720px;
}

ul, ol {
  padding-left: 20px;
}

li {
  margin-bottom: 8px;
}

footer {
  border-top: 1px solid rgba(15, 76, 92, 0.06);
  padding: 32px 0;
  margin-top: 72px;
}

.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  font-size: 14px;
  color: var(--text-muted);
}
