* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Pretendard", sans-serif;
  background: linear-gradient(180deg, #eef6ff 0%, #ffffff 100%);
  color: #0f172a;
}

.wrap {
  max-width: 960px;
  margin: 0 auto;
  padding: 48px 20px 80px;
}

.hero {
  background: white;
  border-radius: 24px;
  padding: 48px 28px;
  box-shadow: 0 20px 60px rgba(0, 50, 138, 0.08);
  text-align: center;
}

.badge {
  display: inline-block;
  margin-bottom: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #00328a;
  color: white;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

h1 {
  margin: 0 0 16px;
  font-size: 42px;
  line-height: 1.2;
}

p {
  font-size: 18px;
  line-height: 1.7;
  color: #334155;
}

.actions {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 20px;
  border-radius: 14px;
  background: #00328a;
  color: white;
  text-decoration: none;
  font-weight: 700;
}

.btn.outline {
  background: white;
  color: #00328a;
  border: 1px solid #bfd3f2;
}

.section {
  margin-top: 28px;
  background: white;
  border-radius: 20px;
  padding: 28px 24px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
}

h2 {
  margin-top: 0;
}
