:root{--build-id:"685086ab-559e-4a57-aef3-ff748577654b";}
/* 색상 팔레트 C17 */
:root {
  --primary: #ea580c;
  --bg: #fff7ed;
  --text: #431407;
  --accent: #f97316;
  --heading: var(--text);
  --link: var(--text);
}

/* 폰트 F3 (Windows Core) */
body {
  font-family: "Segoe UI", "Malgun Gothic", "Noto Sans KR", -apple-system, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  font-weight: 400;
  letter-spacing: 0em;
  background: var(--bg);
  color: var(--text);
  margin: 0;
  padding: 0;
}

/* 헤딩 스타일 H13 */
h1 {
  font-family: "Segoe UI", "Malgun Gothic", "Noto Sans KR", -apple-system, system-ui, sans-serif;
  font-size: clamp(2.10rem, 2.8vw + 1rem, 3.125rem);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0;
  color: var(--heading);
  margin: 0 0 1.5rem 0;
}

h2 {
  font-family: "Segoe UI", "Malgun Gothic", "Noto Sans KR", -apple-system, system-ui, sans-serif;
  font-size: clamp(1.58rem, 2.1vw + 0.75rem, 2.34rem);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0;
  color: var(--heading);
  margin: 0 0 1.25rem 0;
}

h3 {
  font-family: "Segoe UI", "Malgun Gothic", "Noto Sans KR", -apple-system, system-ui, sans-serif;
  font-size: clamp(1.26rem, 1.68vw + 0.6rem, 1.88rem);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0;
  color: var(--heading);
  margin: 0 0 1rem 0;
}

/* 여백 시스템 S02 */
section {
  padding: 4rem 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.gap {
  gap: 2.5rem;
}

/* 접근성 */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: #000;
  color: #fff;
  padding: 8px 16px;
  text-decoration: none;
  z-index: 100;
}

.skip-link:focus {
  top: 0;
}

a:focus-visible,
input:focus-visible,
label:focus-visible {
  outline: 3px solid #0066cc;
  outline-offset: 2px;
}

a:focus:not(:focus-visible),
input:focus:not(:focus-visible),
label:focus:not(:focus-visible) {
  outline: none;
}

/* 네비게이션 N14 */
header {
  background: #fff;
  border-bottom: 2px solid #fed7aa;
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.menu-checkbox {
  display: none;
}

.menu-toggle {
  display: none;
  font-size: 1.75rem;
  cursor: pointer;
  color: var(--primary);
}

nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
}

nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  padding-bottom: 0.25rem;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s;
}

nav a:hover,
nav a[aria-current="page"] {
  border-bottom-color: var(--primary);
}

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

  nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 2px solid #fed7aa;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s;
  }

  .menu-checkbox:checked ~ nav {
    max-height: 500px;
  }

  nav ul {
    flex-direction: column;
    padding: 1rem 1.5rem;
    gap: 0;
  }

  nav li {
    border-bottom: 1px solid #fed7aa;
  }

  nav li:last-child {
    border-bottom: none;
  }

  nav a {
    display: block;
    padding: 1rem 0;
    border-bottom: none;
  }
}

/* 버튼 스타일 B09 */
.btn {
  display: inline-block;
  border-radius: 0.5rem;
  padding: 1rem 2rem;
  font-weight: 600;
  background: var(--primary);
  color: #fff;
  text-decoration: none;
  transition: all 0.3s;
}

.btn:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-secondary:hover {
  background: var(--primary);
  color: #fff;
}

/* 카드 스타일 K13 */
.card {
  border-radius: 0.5rem;
  box-shadow: 4px 4px 0 rgba(234, 88, 12, 0.15);
  padding: 2rem;
  background: #fff;
  transition: all 0.3s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 6px 6px 0 rgba(234, 88, 12, 0.2);
}

/* 그리드 레이아웃 */
.grid {
  display: grid;
  gap: 2.5rem;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

/* Hero 섹션 */
.hero {
  background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
  padding: 5rem 0;
  text-align: center;
}

.hero h1 {
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.125rem;
  max-width: 700px;
  margin: 0 auto 2rem;
  color: #7c2d12;
}

/* 섹션 스타일 */
.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  font-size: 1.0625rem;
  color: #7c2d12;
}

/* Footer */
footer {
  background: #fff;
  border-top: 2px solid #fed7aa;
  padding: 3rem 0 2rem;
  margin-top: 4rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.9375rem;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-info {
  margin-bottom: 1rem;
  color: #7c2d12;
  font-size: 0.9375rem;
}

.footer-copyright {
  color: #9a3412;
  font-size: 0.875rem;
}

/* 문서 페이지 */
.doc-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  text-align: center;
}

.doc-container p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.doc-container a {
  color: var(--primary);
  text-decoration: underline;
}

/* 단계 스타일 */
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

/* FAQ 스타일 */
.faq-item {
  background: #fff;
  border-radius: 0.5rem;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 2px 2px 0 rgba(234, 88, 12, 0.1);
}

.faq-question {
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.75rem;
  font-size: 1.0625rem;
}

.faq-answer {
  color: #7c2d12;
  line-height: 1.7;
}

/* 연락처 정보 */
.contact-info {
  background: #fff;
  border-radius: 0.5rem;
  padding: 2rem;
  box-shadow: 4px 4px 0 rgba(234, 88, 12, 0.15);
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-icon {
  font-size: 1.5rem;
}

/* 리스트 스타일 */
ul.custom-list {
  list-style: none;
  padding: 0;
}

ul.custom-list li {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  position: relative;
}

ul.custom-list li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

/* 반응형 */
@media (max-width: 768px) {
  section {
    padding: 3rem 0;
  }

  .hero {
    padding: 3rem 0;
  }

  .grid {
    gap: 1.5rem;
  }
}