:root{--build-id:"e0f3fc45-6e28-439e-8376-283a57cd59df";}
/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #0f172a;
  --bg: #f8fafc;
  --text: #1e293b;
  --accent: #475569;
  --heading: var(--text);
  --link: var(--text);
}

body {
  font-family: -apple-system, "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Segoe UI", 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 */
.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;
}

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

/* Typography */
h1 {
  font-size: clamp(2.25rem, 5vw, 3.375rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.015em;
  text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.1);
  color: var(--heading);
  margin-bottom: 1.5rem;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.53rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--heading);
  margin-bottom: 1.25rem;
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.69rem);
  font-weight: 600;
  line-height: 1.3;
  color: var(--heading);
  margin-bottom: 1rem;
}

/* Header & Navigation */
header {
  background: var(--bg);
  border-bottom: 2px solid var(--primary);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-container {
  max-width: 1450px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  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;
  gap: 2.5rem;
  list-style: none;
}

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

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

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

  nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 2px solid var(--primary);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s;
  }

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

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

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

  nav a {
    display: block;
    padding: 1rem 2rem;
  }
}

/* Container */
.container {
  max-width: 1450px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Sections */
section {
  padding: 6.5rem 0;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--bg) 0%, #e2e8f0 100%);
  border-bottom: 3px solid var(--primary);
}

.hero-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero-text {
  font-size: 1.125rem;
  margin-bottom: 3rem;
  color: var(--text);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 4.5rem;
  margin-top: 4rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.stat-item svg {
  color: var(--primary);
}

.stat-text {
  text-align: center;
}

.stat-text strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.stat-text span {
  font-size: 0.95rem;
  color: var(--accent);
}

/* Intro Section */
.intro-section {
  background: var(--bg);
}

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

.intro-card {
  border-bottom: 2px solid #e5e7eb;
  padding: 2rem 0;
}

.icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 1.5rem;
}

/* Features Section */
.features-section {
  background: #f1f5f9;
}

.features-list {
  margin-top: 3rem;
}

.feature-item {
  display: flex;
  gap: 2rem;
  border-bottom: 2px solid #e5e7eb;
  padding: 2rem 0;
}

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

.feature-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
}

.feature-content h3 {
  margin-bottom: 0.75rem;
}

/* Care Section */
.care-section {
  background: var(--bg);
}

.care-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  margin-top: 3rem;
  align-items: center;
}

.care-text p {
  margin-bottom: 1.5rem;
}

.care-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 768px) {
  .care-content {
    grid-template-columns: 1fr;
  }
}

/* CTA Section */
.cta-section {
  background: var(--primary);
  color: #fff;
  text-align: center;
}

.cta-section h2 {
  color: #fff;
}

.cta-section p {
  color: #e2e8f0;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  display: inline-block;
  border: 2px solid #fff;
  background: transparent;
  padding: 0.875rem 2rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s;
}

.cta-button:hover {
  background: #fff;
  color: var(--primary);
}

/* Page Header */
.page-header {
  background: linear-gradient(135deg, var(--bg) 0%, #e2e8f0 100%);
  padding: 4rem 0;
  text-align: center;
  border-bottom: 3px solid var(--primary);
}

.page-intro {
  font-size: 1.125rem;
  color: var(--accent);
  max-width: 700px;
  margin: 0 auto;
}

/* Content Section */
.content-section {
  background: var(--bg);
}

.content-section.alt {
  background: #f1f5f9;
}

.content-blocks {
  display: grid;
  gap: 4.5rem;
  margin-top: 3rem;
}

.content-block {
  border-bottom: 2px solid #e5e7eb;
  padding: 2rem 0;
}

.block-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 1.5rem;
}

.content-block p {
  margin-bottom: 1.5rem;
}

.content-block p:last-child {
  margin-bottom: 0;
}

/* Mission Section */
.mission-section {
  background: #f1f5f9;
}

.mission-content {
  max-width: 900px;
  margin: 2rem auto 0;
}

.mission-content p {
  margin-bottom: 1.5rem;
}

/* Values Section */
.values-section {
  background: var(--bg);
}

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

.value-card {
  border-bottom: 2px solid #e5e7eb;
  padding: 2rem 0;
}

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

/* Benefit Section */
.benefit-item {
  margin-top: 3rem;
}

.benefit-text p {
  margin-bottom: 1.5rem;
}

/* Summary Section */
.summary-section {
  background: var(--primary);
  color: #fff;
}

.summary-section h2 {
  color: #fff;
  text-align: center;
}

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

.summary-card {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
}

.summary-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 1rem;
}

.summary-card p {
  color: #e2e8f0;
  font-weight: 600;
}

/* Tips Section */
.tips-section {
  background: var(--bg);
}

.tip-card {
  border: 2px solid var(--primary);
  padding: 2rem;
  margin-bottom: 4.5rem;
}

.tip-card:last-child {
  margin-bottom: 0;
}

.tip-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.tip-icon {
  font-size: 3rem;
  flex-shrink: 0;
}

.tip-header h2 {
  margin-bottom: 0;
}

.tip-content p {
  margin-bottom: 1.5rem;
}

.tip-content p:last-child {
  margin-bottom: 0;
}

/* Quick Tips */
.quick-tips {
  background: #f1f5f9;
}

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

.quick-tip {
  padding: 1.5rem;
  background: var(--bg);
  border-left: 4px solid var(--primary);
  font-weight: 600;
}

/* FAQ Section */
.faq-section {
  background: var(--bg);
}

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

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

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

.faq-item p {
  color: var(--text);
}

/* Contact Section */
.contact-section {
  background: var(--bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  margin-top: 3rem;
}

.contact-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.contact-details strong {
  display: block;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.contact-message p {
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* Map Section */
.map-section {
  background: #f1f5f9;
}

.map-placeholder {
  border: 2px solid var(--primary);
  border-radius: 0.5rem;
  overflow: hidden;
}

/* Footer */
footer {
  background: var(--primary);
  color: #fff;
  padding: 3rem 0 1.5rem;
}

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

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-brand strong {
  display: block;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.footer-brand p {
  color: #cbd5e1;
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: #e2e8f0;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  text-align: center;
}

.footer-bottom p {
  color: #cbd5e1;
  font-size: 0.875rem;
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .footer-links {
    flex-direction: column;
    gap: 1rem;
  }
}

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

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

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

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