:root{--build-id:"00608491-d291-489a-afac-35d00e2fc335";}
@charset "UTF-8";

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

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;
  color: #1a1a1a;
  background-color: #fafafa;
}

h1 {
  font-size: clamp(2.00rem, 2.6vw + 1rem, 3.00rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #0a0a0a;
  margin-bottom: 1.2rem;
}

h2 {
  font-size: clamp(1.50rem, 1.95vw + 0.75rem, 2.25rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: #0a0a0a;
  margin-bottom: 1rem;
}

h3 {
  font-size: clamp(1.20rem, 1.56vw + 0.6rem, 1.80rem);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: #2a2a2a;
  margin-bottom: 0.8rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: #2563eb;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

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

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

header {
  background-color: #ffffff;
  border-bottom: 1px solid #e5e5e5;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.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: #2563eb;
  text-decoration: none;
}

.logo:hover {
  color: #1d4ed8;
  text-decoration: none;
}

.menu-checkbox {
  display: none;
}

.menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: #2563eb;
}

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

nav a {
  color: #4a4a4a;
  font-weight: 500;
  padding: 0.5rem 0;
  transition: color 0.2s ease;
}

nav a:hover {
  color: #2563eb;
  text-decoration: none;
}

nav a[aria-current="page"] {
  color: #2563eb;
  font-weight: 600;
  border-bottom: 2px solid #2563eb;
}

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

  nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

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

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

  nav a {
    display: block;
    padding: 0.8rem 0;
    border-bottom: 1px solid #f0f0f0;
  }
}

main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.hero {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  padding: 4rem 2rem;
  border-radius: 12px;
  margin-bottom: 3rem;
  text-align: center;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  color: #1e40af;
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #374151;
  margin-bottom: 2rem;
}

.hero svg {
  color: #2563eb;
  margin-top: 1rem;
}

.intro,
.features,
.benefits,
.cta,
.content-section,
.page-header {
  margin-bottom: 3rem;
}

.page-header {
  text-align: center;
  padding-bottom: 2rem;
  border-bottom: 2px solid #e5e5e5;
}

.page-header p {
  font-size: 1.1rem;
  color: #6b7280;
  max-width: 700px;
  margin: 0 auto;
}

.content-section {
  background-color: #ffffff;
  padding: 2.5rem;
  border-radius: 10px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.content-section svg {
  display: block;
  margin: 2rem auto 0;
  color: #2563eb;
}

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

.feature-card {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.feature-card h3 {
  color: #1e40af;
  margin-bottom: 1rem;
}

.cta {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  text-align: center;
}

.cta h2 {
  color: #1e40af;
  margin-bottom: 1rem;
}

.cta p {
  font-size: 1.05rem;
  color: #374151;
  max-width: 700px;
  margin: 0 auto 1rem;
}

.contact-info {
  background-color: #f9fafb;
  padding: 2rem;
  border-radius: 8px;
  margin: 2rem 0;
  border-left: 4px solid #2563eb;
}

.contact-info p {
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
}

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

.doc-container h1 {
  margin-bottom: 1.5rem;
}

.doc-container p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

footer {
  background-color: #1f2937;
  color: #d1d5db;
  text-align: center;
  padding: 2rem 1.5rem;
  margin-top: 4rem;
}

footer p {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

footer a {
  color: #93c5fd;
  text-decoration: none;
}

footer a:hover {
  color: #bfdbfe;
  text-decoration: underline;
}

@media (max-width: 768px) {
  main {
    padding: 2rem 1rem;
  }

  .hero {
    padding: 3rem 1.5rem;
  }

  .content-section {
    padding: 1.5rem;
  }

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