:root{--build-id:"40c05a75-ac0f-4d10-8a48-8e5596ff0fca";}
:root {
  --primary: #10b981;
  --bg: #f0fdf4;
  --text: #064e3b;
  --accent: #34d399;
  --heading: #064e3b;
  --link: #064e3b;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans KR", "Malgun Gothic", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

.header-container {
  max-width: 1250px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.logo {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--heading);
  text-decoration: none;
}

.menu-checkbox {
  display: none;
}

.menu-toggle {
  display: block;
  font-size: 1.75rem;
  cursor: pointer;
  color: var(--heading);
  position: absolute;
  top: 1.5rem;
  right: 2rem;
}

nav {
  display: none;
  width: 100%;
}

.menu-checkbox:checked ~ nav {
  display: block;
}

nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

nav a {
  color: var(--link);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

nav a:hover {
  color: var(--primary);
}

main {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 5.5rem 0;
}

h1 {
  font-size: 2.875rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--heading);
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 1.25rem;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
  font-size: 1.0625rem;
}

.hero {
  text-align: center;
  padding: 7rem 0 5rem;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 2rem;
}

.cta-button {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
  margin-top: 1.5rem;
}

.cta-button:hover {
  background: var(--accent);
}

.card {
  border: 2px solid #d1d5db;
  border-radius: 0.5rem;
  padding: 2rem;
  margin-bottom: 2rem;
}

.grid {
  display: grid;
  gap: 3.25rem;
  margin-top: 3rem;
}

.grid-2 {
  grid-template-columns: 1fr;
}

.grid-3 {
  grid-template-columns: 1fr;
}

.step-list {
  list-style: none;
  counter-reset: step-counter;
}

.step-list li {
  counter-increment: step-counter;
  margin-bottom: 2rem;
  padding-left: 3rem;
  position: relative;
}

.step-list li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  background: var(--primary);
  color: white;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.icon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.icon-card {
  text-align: center;
  padding: 2rem;
  border: 2px solid #e5e7eb;
  border-radius: 0.5rem;
}

.icon-card svg {
  width: 60px;
  height: 60px;
  margin-bottom: 1rem;
}

footer {
  background: var(--primary);
  color: white;
  text-align: center;
  padding: 3rem 2rem;
  margin-top: 5rem;
}

footer a {
  color: white;
  text-decoration: none;
  margin: 0 0.5rem;
}

footer a:hover {
  text-decoration: underline;
}

.contact-info {
  margin: 2rem 0;
  padding: 2rem;
  background: white;
  border-radius: 0.5rem;
  border: 2px solid #d1d5db;
}

.contact-info p {
  margin-bottom: 0.75rem;
  font-size: 1.125rem;
}

.faq-item {
  margin-bottom: 2rem;
  padding: 1.5rem;
  border: 2px solid #e5e7eb;
  border-radius: 0.5rem;
}

.faq-item h3 {
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.doc-container {
  max-width: 800px;
  margin: 5rem auto;
  padding: 2rem;
  text-align: center;
}

@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }

  nav {
    display: block !important;
    width: auto;
  }

  nav ul {
    flex-direction: row;
    gap: 2rem;
  }

  .header-container {
    flex-direction: row;
    justify-content: space-between;
  }

  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}