@font-face {
  font-family: Khula;
  src: local("Khula");
}
:root {
  --green-900: #0a3a1c;
  --green-800: #0e4a24;
  --green-700: #14612f;
  --green: #27c36b;
  --green-200: #d7f5e6;
  --black: #0c0c0c;
  --white: #ffffff;
  --grey-600: #67707a;
  --grey-700: #4b5563;
  --grey-200: #e5e7eb;
  --orange: #ff8a24;
  --orange-700: #ff7a00;
  --shadow: 0 10px 24px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06);
}
* {
  box-sizing: border-box;
}
a {
    text-decoration: underline !important;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  font-family: "Khula", system-ui, -apple-system, Segoe UI, Roboto, Arial,
    sans-serif;
  color: var(--black);
  background: var(--white);
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font-family: inherit;
}
.container,
.l-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px;
}
.section-title {
  font-size: clamp(24px, 3vw, 40px);
  line-height: 1.1;
  margin: 0 0 16px;
  font-weight: 800;
  text-align: center;
}
.section-lead {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--grey-700);
  margin: 0 0 24px;
}
.page-title {
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.1;
  margin: 0 0 8px;
  font-weight: 800;
}
.page-subtitle {
  color: var(--grey-700);
  margin: 0;
}
.list {
  padding-left: 18px;
}
.list li {
  margin: 6px 0;
}
.notice {
  font-size: 12px;
  color: #fff;
  background: #111;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 14px;
  border: 0;
  cursor: pointer;
  font-weight: 700;
  transition: 0.2s transform ease, 0.2s box-shadow ease;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.btn--primary {
  background: #111;
  color: #fff;
  box-shadow: var(--shadow);
}
.btn--ghost {
  background: transparent;
  border: 2px solid #111;
  color: #111;
}
.btn--block {
  width: 100%;
}
.btn:active {
  transform: translateY(1px);
}
