:root {
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  background-color: #ffffff;
  color: #000000;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

header {
  border-bottom: 1px solid #e0e0e0;
  padding: 1.5rem 0;
}

nav {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}

main {
  padding: 3.5rem 0 3rem;
}

main h1 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

main h2 {
  font-size: 1.3rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

main p,
main li {
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.cta-buttons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.75rem;
  border: 1px solid #000000;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.cta-buttons a.primary {
  background-color: #000000;
  color: #ffffff;
}

.cta-buttons a.primary:hover {
  background-color: #333333;
  text-decoration: none;
}

.cta-buttons a.secondary:hover {
  background-color: #f0f0f0;
  text-decoration: none;
}

footer {
  text-align: center;
  padding: 2rem 0;
  border-top: 1px solid #e0e0e0;
  font-size: 0.85rem;
  color: #555555;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}

.wrapper {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

ul {
  padding-left: 1.25rem;
}
