/* ===== COLORS ===== */

body {
  background: #ffffff;
  color: #111111;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Headings */

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  color: #111111;
}

h1 { font-size: 2rem; }
h2 { font-size: 1.75rem; }
h3 { font-size: 1.5rem; }

p {
  color: #444444;
  line-height: 1.6;
}

/* Links */

a {
  color: #111111;
  text-decoration: none;
  transition: 0.2s ease;
}

a:hover {
  color: #ff9900;
}

/* Utility */

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}

@media (min-width: 768px) {
  .container {
    padding: 0 24px;
  }
}

.section {
  padding: 48px 0;
}

.bg-light {
  background: #f7f7f8;
}

.text-muted {
  color: #666666;
}