:root {
  --blue: #3182f6;
  --ink: #191f28;
  --sub: #6b7684;
  --line: #e5e8eb;
  --soft: #f7f8fa;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  color: var(--ink);
  font-family: Pretendard, "Noto Sans KR", system-ui, sans-serif;
  background: var(--soft);
  line-height: 1.75;
  letter-spacing: -0.2px;
}
.nav {
  height: 68px;
  width: min(920px, calc(100% - 40px));
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-size: 22px;
  font-weight: 950;
  color: var(--ink);
  text-decoration: none;
}
.logo b {
  color: var(--blue);
}
.nav a:last-child {
  color: var(--sub);
  font-size: 14px;
}
.page {
  width: min(760px, calc(100% - 40px));
  margin: 34px auto 80px;
  background: #fff;
  border-radius: 26px;
  padding: 44px;
  box-shadow: 0 12px 40px #191f2808;
}
.eyebrow {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}
.page h1 {
  font-size: 38px;
  line-height: 1.25;
  letter-spacing: -2px;
  margin: 8px 0 18px;
}
.page h2 {
  font-size: 21px;
  margin: 34px 0 8px;
}
.page p,
.page li {
  color: #4e5968;
}
.notice {
  background: #eaf3ff;
  border-radius: 16px;
  padding: 18px;
  margin: 24px 0;
}
.button {
  display: inline-block;
  background: var(--blue);
  color: #fff !important;
  text-decoration: none;
  border: 0;
  border-radius: 12px;
  padding: 13px 18px;
  font-weight: 800;
  cursor: pointer;
}
.field {
  margin: 18px 0;
}
.field label {
  display: block;
  font-weight: 800;
  margin-bottom: 7px;
}
.field input,
.field textarea {
  width: 100%;
  border: 1px solid #d1d6db;
  border-radius: 12px;
  padding: 13px;
  font: inherit;
}
.field textarea {
  min-height: 150px;
  resize: vertical;
}
.consent {
  display: flex;
  gap: 8px;
  color: var(--sub);
  font-size: 13px;
}
.status {
  font-size: 14px;
  margin-top: 12px;
}
.links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.links a {
  color: var(--blue);
}
.budget-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}
.budget-table th,
.budget-table td {
  padding: 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}
.budget-table th {
  background: var(--soft);
}
.tip {
  border-left: 4px solid var(--blue);
  padding: 10px 16px;
  background: #f8fbff;
  margin: 22px 0;
}
.cta-box {
  background: #eaf3ff;
  border-radius: 18px;
  padding: 22px;
  margin-top: 30px;
}
.cta-box h2 {
  margin-top: 0;
}
.muted {
  font-size: 13px;
  color: #8b95a1 !important;
}
@media (max-width: 600px) {
  .page {
    padding: 28px 22px;
  }
  .page h1 {
    font-size: 31px;
  }
}
