:root{--build-id:"4f4243f4-708e-429a-adf7-a21fe2ce12d3";}
/* 리셋 및 기본 설정 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #10b981;
  --bg: #f0fdf4;
  --text: #064e3b;
  --accent: #34d399;
  --heading: #064e3b;
  --link: #064e3b;
  --border: #d1fae5;
  --card-bg: #ffffff;
}

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

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

/* 헤더 및 네비게이션 */
header {
  background-color: var(--card-bg);
  border-bottom: 2px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.header-container {
  max-width: 1250px;
  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;
  letter-spacing: -0.01em;
}

.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: 2rem;
}

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

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

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

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

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

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

  nav li {
    border-bottom: 1px solid var(--border);
  }

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

/* 히어로 섹션 */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: white;
  padding: 5.5rem 0;
  text-align: center;
}

.hero h1 {
  font-size: 2.875rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}

.hero-text {
  font-size: 1.125rem;
  margin-bottom: 3rem;
  opacity: 0.95;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-icons {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

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

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

.icon-item p {
  font-weight: 600;
  font-size: 1rem;
}

/* 페이지 헤더 */
.page-header {
  background-color: var(--primary);
  color: white;
  padding: 4rem 0;
  text-align: center;
}

.page-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.page-header p {
  font-size: 1.125rem;
  opacity: 0.9;
}

/* 콘텐츠 섹션 */
.content-section {
  padding: 5.5rem 0;
}

.content-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 2.5rem;
  text-align: center;
  letter-spacing: -0.01em;
}

/* 단계 카드 */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3.25rem;
  margin-top: 3rem;
}

.step-card {
  background-color: var(--card-bg);
  border: 2px solid var(--border);
  border-radius: 0.5rem;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.15);
}

.step-number {
  display: inline-block;
  background-color: var(--primary);
  color: white;
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  font-weight: 600;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
}

.step-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 1rem;
}

.step-card p {
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.step-card svg {
  margin: 0 auto;
}

/* 특징 그리드 */
.features-section {
  background-color: var(--card-bg);
  padding: 5.5rem 0;
}

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

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

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

.feature-item h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 0.75rem;
}

.feature-item p {
  color: var(--text);
  line-height: 1.6;
}

/* CTA 섹션 */
.cta-section {
  background-color: var(--primary);
  color: white;
  padding: 5.5rem 0;
  text-align: center;
}

.cta-section h2 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}

.cta-section p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

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

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* 콘텐츠 블록 */
.content-block {
  margin-bottom: 4rem;
}

.content-block h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 1.5rem;
  text-align: left;
}

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

.content-svg {
  display: block;
  margin: 2rem auto;
}

/* 접근 방식 리스트 */
.approach-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}

.approach-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.approach-item .number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  flex-shrink: 0;
}

.approach-item h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 0.5rem;
}

.approach-item p {
  line-height: 1.6;
  margin: 0;
}

/* 도움 리스트 */
.help-list {
  list-style: none;
  padding-left: 0;
}

.help-list li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
  line-height: 1.6;
}

.help-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
  font-size: 1.25rem;
}

/* 가이드 단계 */
.guide-step {
  background-color: var(--card-bg);
  border: 2px solid var(--border);
  border-radius: 0.5rem;
  padding: 2rem;
  margin-bottom: 2.5rem;
}

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

.step-badge {
  background-color: var(--primary);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.875rem;
}

.guide-step h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--heading);
  margin: 0;
  text-align: left;
}

.guide-step p {
  line-height: 1.7;
  margin: 0;
}

.guide-icon {
  text-align: center;
  margin-top: 1.5rem;
}

/* 방법 카드 */
.method-card {
  background-color: var(--card-bg);
  border: 2px solid var(--border);
  border-radius: 0.5rem;
  padding: 2rem;
  margin-bottom: 2.5rem;
  position: relative;
}

.method-card h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 1rem;
  text-align: left;
}

.method-card p {
  line-height: 1.7;
  margin: 0;
}

.method-icon {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 2.5rem;
  opacity: 0.3;
}

/* 팁 그리드 */
.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3.25rem;
}

.tip-card {
  background-color: var(--card-bg);
  border: 2px solid var(--border);
  border-radius: 0.5rem;
  padding: 2rem;
}

.tip-number {
  display: inline-block;
  background-color: var(--primary);
  color: white;
  padding: 0.375rem 0.875rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.tip-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 0.75rem;
}

.tip-card p {
  line-height: 1.6;
  margin: 0;
}

/* FAQ */
.faq-item {
  background-color: var(--card-bg);
  border: 2px solid var(--border);
  border-radius: 0.5rem;
  padding: 2rem;
  margin-bottom: 2rem;
}

.faq-item h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}

.faq-item p {
  line-height: 1.7;
  margin: 0;
}

/* 연락처 */
.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3.25rem;
  margin-bottom: 4rem;
}

.contact-card {
  background-color: var(--card-bg);
  border: 2px solid var(--border);
  border-radius: 0.5rem;
  padding: 2rem;
  text-align: center;
}

.contact-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.contact-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 0.75rem;
}

.contact-card p {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.contact-desc {
  font-size: 0.875rem !important;
  font-weight: 400 !important;
  color: var(--text) !important;
  margin: 0 !important;
}

.contact-notice,
.contact-hours {
  background-color: var(--card-bg);
  border: 2px solid var(--border);
  border-radius: 0.5rem;
  padding: 2rem;
  margin-bottom: 2rem;
}

.contact-notice h3,
.contact-hours h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 1rem;
}

.contact-notice ul {
  list-style: none;
  padding-left: 0;
}

.contact-notice li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.contact-notice li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

.contact-hours p {
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

.hours-note {
  font-size: 0.875rem;
  color: #6b7280;
  margin-top: 1rem;
}

/* 푸터 */
footer {
  background-color: var(--text);
  color: white;
  padding: 3rem 0 2rem;
}

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

.footer-info {
  margin-bottom: 2rem;
}

.footer-info .brand {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--accent);
}

.footer-info p {
  margin-bottom: 0.5rem;
  opacity: 0.9;
}

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

.footer-links a {
  color: white;
  text-decoration: none;
  margin: 0 0.5rem;
  opacity: 0.9;
  transition: opacity 0.3s;
}

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

.footer-links span {
  opacity: 0.5;
}

.copyright {
  font-size: 0.875rem;
  opacity: 0.7;
  margin-top: 1rem;
}

/* 문서 컨테이너 (privacy, terms) */
.doc-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 2rem;
  text-align: center;
}

.doc-container h1 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 2rem;
}

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

.doc-container a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

.doc-container a:hover {
  text-decoration: underline;
}

/* 반응형 */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }

  .page-header h1 {
    font-size: 1.875rem;
  }

  .content-section h2 {
    font-size: 1.5rem;
  }

  .steps,
  .features-grid,
  .tips-grid,
  .contact-info {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .method-icon {
    position: static;
    display: block;
    text-align: center;
    margin-top: 1rem;
    opacity: 0.5;
  }
}