:root{--build-id:"cd512bd6-b66c-4af0-9189-b17022f1bd0b";}
@import url("https://fonts.googleapis.com/css2?family=Pretendard:wght@300;600;800&family=Nanum+Myeongjo:wght@400;700&display=swap");

:root {
  --primary: #334155;
  --bg: #f8fafc;
  --text: #0f172a;
  --accent: #94a3b8;
  --heading: var(--text);
  --link: var(--text);
}

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

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

.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;
}

header {
  background: var(--bg);
  padding: 1.25rem 0;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  text-decoration: none;
  font-family: "Pretendard", sans-serif;
}

.menu-checkbox {
  display: none;
}

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

nav ul {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

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

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

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

  nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

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

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

main {
  min-height: 60vh;
}

section {
  padding: 5.75rem 0;
}

.container {
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 2rem;
}

h1 {
  font-size: clamp(2.15rem, 2.9vw + 1rem, 3.15rem);
  font-weight: 770;
  line-height: 1.17;
  letter-spacing: -0.013em;
  color: var(--heading);
  font-family: "Pretendard", sans-serif;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: clamp(1.61rem, 2.18vw + 0.75rem, 2.36rem);
  font-weight: 770;
  line-height: 1.22;
  letter-spacing: -0.013em;
  color: var(--heading);
  font-family: "Pretendard", sans-serif;
  margin-bottom: 1.25rem;
}

h3 {
  font-size: clamp(1.29rem, 1.74vw + 0.6rem, 1.89rem);
  font-weight: 670;
  line-height: 1.27;
  letter-spacing: -0.013em;
  color: var(--heading);
  font-family: "Pretendard", sans-serif;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1.5rem;
}

.hero {
  background: linear-gradient(135deg, rgba(51, 65, 85, 0.95) 0%, rgba(15, 23, 42, 0.9) 100%),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23334155" width="1200" height="600"/><path fill="%2394A3B8" opacity="0.1" d="M0 300 Q300 200 600 300 T1200 300 V600 H0 Z"/></svg>')
    center / cover;
  color: #fff;
  padding: 8rem 0 6rem;
  text-align: center;
}

.hero h1 {
  color: #fff;
  margin-bottom: 2rem;
}

.hero p {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.btn {
  display: inline-block;
  border-radius: 9999px;
  padding: 1.25rem 3rem;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  text-decoration: none;
  transition: all 0.3s;
  background: var(--primary);
  color: #fff;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

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

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

.icon-item {
  text-align: center;
}

.icon-item svg {
  width: 80px;
  height: 80px;
  margin-bottom: 1.5rem;
}

.card {
  border-radius: 0.5rem;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.1);
  padding: 2rem;
  background: #fff;
  margin-bottom: 2rem;
}

.card h3 {
  color: var(--primary);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3.75rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3.75rem;
}

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

.faq-item:last-child {
  border-bottom: none;
}

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

footer {
  background: var(--primary);
  color: #fff;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

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

.footer-links {
  margin: 1.5rem 0;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  margin: 0 1rem;
  font-size: 0.9rem;
}

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

.contact-info {
  margin: 2rem 0;
}

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

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