* {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

body {
  font-family: 'Inter', sans-serif;
  color: #1a1a1a;
  background: #fff;
  -webkit-font-smoothing: antialiased
}

h1,
h2,
h3,
h4,
h5 {
  font-family: 'Inter', sans-serif
}

header {
  position: sticky;
  top: 0;
  z-index: 100
}

.nav-link {
  position: relative
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #752226;
  transition: width .3s
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%
}

.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 200
}

.wa-float a {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 11px 16px;
  border-radius: 50px;
  box-shadow: 0 4px 18px rgba(37, 211, 102, .4);
  text-decoration: none;
  transition: transform .2s
}

.wa-float a:hover {
  transform: translateY(-2px)
}

/* Legal document prose */
.legal-content h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: #181F4D;
  margin-top: 2.25rem;
  margin-bottom: 0.75rem;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  line-height: 1.75;
  color: #4b5563;
  margin-bottom: 1rem;
}

.legal-content ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

.legal-content li {
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  line-height: 1.75;
  color: #4b5563;
  margin-bottom: 0.5rem;
}

.legal-content a {
  color: #752226;
  text-decoration: underline;
}

.legal-content strong {
  color: #181F4D;
  font-weight: 600;
}
