/* and if — legal documents style */
/* font: outfit */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600&display=swap');

:root {
  --background: #2D1B4E;
  --text-primary: #E8D5F2;
  --text-secondary: rgba(232, 213, 242, 0.7);
  --accent: rgba(232, 213, 242, 0.15);
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  background-color: var(--background);
  color: var(--text-primary);
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
}

body {
  line-height: 1.7;
  padding: 48px 20px;
}

main {
  max-width: 820px;
  margin: 0 auto;
}

h1 {
  font-size: 2.2rem;
  margin-bottom: 32px;
}

h2 {
  font-size: 1.4rem;
  margin-top: 56px;
  margin-bottom: 16px;
}

p {
  font-size: 1rem;
  margin-bottom: 16px;
  color: var(--text-primary);
}

ul {
  margin: 16px 0 24px 20px;
  padding: 0;
}

li {
  margin-bottom: 10px;
  color: var(--text-primary);
}

small {
  display: block;
  margin-top: 64px;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.section {
  padding-top: 8px;
  border-top: 1px solid var(--accent);
}

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

a:hover {
  opacity: 0.8;
}
