:root{--build-id:"983d6ff4-f58e-421b-82be-77301d6c8164";}
/* 기본 리셋 및 변수 */
:root {
  --primary: #0f766e;
  --bg: #f0fdfa;
  --text: #134e4a;
  --accent: #115e59;
  --heading: #134e4a;
  --link: #134e4a;
  --border: #99f6e4;
  --card-bg: #ffffff;
}

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

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

/* 접근성 */
.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;
}

/* 헤더 */
header {
  background-color: var(--card-bg);
  border-bottom: 2px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
}

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

nav a {
  color: var(--link);
  text-decoration: none;
  font-weight: 500;
  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-color: var(--card-bg);
    border-bottom: 2px solid var(--border);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s;
  }

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

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

/* 컨테이너 */
.container {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 2rem;
}

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

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

.hero-text {
  font-size: 1.125rem;
  max-width: 700px;
  margin: 0 auto 2rem;
  color: var(--text);
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* 버튼 */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}

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

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

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

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

/* 섹션 */
section {
  padding: 5.5rem 0;
}

section h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 2rem;
  text-align: center;
}

section h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 1rem;
}

.section-intro {
  text-align: center;
  font-size: 1.125rem;
  max-width: 700px;
  margin: 0 auto 3rem;
}

/* 아이콘 그리드 */
.icon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3.25rem;
  margin-top: 3rem;
}

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

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

.icon-item h3 {
  margin-bottom: 0.5rem;
}

/* 특징 리스트 */
.feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  background-color: var(--card-bg);
  border: 2px solid var(--border);
  border-radius: 0.5rem;
  padding: 2rem;
  transition: transform 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 2rem;
  color: var(--primary);
  display: block;
  margin-bottom: 1rem;
}

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

.step {
  text-align: center;
}

.step-number {
  width: 60px;
  height: 60px;
  background-color: var(--primary);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

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

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

.cta-section p {
  color: #ffffff;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-section .btn-primary {
  background-color: #ffffff;
  color: var(--primary);
}

.cta-section .btn-primary:hover {
  background-color: var(--bg);
}

.cta-section .btn-secondary {
  border-color: #ffffff;
  color: #ffffff;
}

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

/* 페이지 헤더 */
.page-header {
  background: linear-gradient(135deg, var(--bg) 0%, #ccfbf1 100%);
  padding: 4rem 0;
  text-align: center;
}

.page-header h1 {
  font-size: 2.875rem;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 1rem;
}

.page-intro {
  font-size: 1.125rem;
  color: var(--text);
}

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

.content-section h2 {
  text-align: left;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}

.content-section h2:first-child {
  margin-top: 0;
}

.content-section p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

/* 가치 그리드 */
.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

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

/* 정보 박스 */
.info-box,
.highlight-box,
.guide-box,
.tip-box {
  background-color: var(--card-bg);
  border-left: 4px solid var(--primary);
  padding: 2rem;
  margin: 2rem 0;
  border-radius: 0.5rem;
}

.highlight-box {
  text-align: center;
}

.highlight-box svg {
  color: var(--primary);
  margin-bottom: 1rem;
}

.info-box h3,
.highlight-box h3,
.guide-box h3,
.tip-box h3 {
  margin-bottom: 1rem;
}

.guide-box ul,
.tip-box ul {
  list-style: none;
  padding-left: 0;
}

.guide-box li,
.tip-box li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.guide-box li:before,
.tip-box li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

/* 혜택 리스트 */
.benefit-list {
  margin: 2rem 0;
}

.benefit-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}

.benefit-icon {
  color: var(--primary);
  font-size: 1.5rem;
  flex-shrink: 0;
}

/* 방법 그리드 */
.method-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

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

/* 기법 섹션 */
.technique-section {
  margin: 2rem 0;
  padding: 2rem;
  background-color: var(--card-bg);
  border-radius: 0.5rem;
}

/* 단계 카드 */
.step-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

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

.step-num {
  background-color: var(--primary);
  color: #ffffff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 1rem;
}

/* 후기 카드 */
.testimonial-card {
  background-color: var(--card-bg);
  border: 2px solid var(--border);
  border-radius: 0.5rem;
  padding: 2rem;
  margin-bottom: 2rem;
}

.testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.testimonial-header h3 {
  margin: 0;
  font-size: 1.25rem;
}

.testimonial-date {
  color: var(--accent);
  font-size: 0.875rem;
}

.testimonial-text {
  margin-bottom: 1rem;
  line-height: 1.8;
}

.testimonial-text:last-child {
  margin-bottom: 0;
}

/* CTA 박스 */
.cta-box,
.contact-box {
  background-color: var(--primary);
  color: #ffffff;
  padding: 3rem;
  border-radius: 0.5rem;
  text-align: center;
  margin-top: 3rem;
}

.cta-box h2,
.contact-box h2 {
  color: #ffffff;
  margin-bottom: 1rem;
}

.cta-box p,
.contact-box p {
  color: #ffffff;
  margin-bottom: 2rem;
}

.cta-box .btn-primary,
.contact-box .btn-primary {
  background-color: #ffffff;
  color: var(--primary);
}

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

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

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

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

.contact-card h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

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

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

.info-section {
  margin-bottom: 3rem;
}

.info-section h2 {
  text-align: left;
  margin-bottom: 1rem;
}

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

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

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

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

/* 푸터 */
footer {
  background-color: var(--card-bg);
  border-top: 2px solid var(--border);
  padding: 3rem 0;
  margin-top: 4rem;
}

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

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

.footer-links a {
  color: var(--link);
  text-decoration: none;
  margin: 0 0.5rem;
}

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

.footer-contact {
  margin-bottom: 1rem;
  color: var(--text);
}

.footer-copyright {
  color: var(--accent);
  font-size: 0.875rem;
}

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

  section h2 {
    font-size: 1.75rem;
  }

  .container {
    padding: 0 1rem;
  }

  section {
    padding: 3rem 0;
  }

  .icon-grid,
  .feature-list,
  .steps,
  .value-grid,
  .method-grid,
  .step-cards,
  .contact-info {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}