:root{--build-id:"0342eac3-5c5c-416c-a3fc-559e7becca9b";}
/* CSS Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI Variable", "Malgun Gothic", "Noto Sans KR", Arial, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  font-weight: 400;
  letter-spacing: 0em;
  color: #1a1a1a;
  background-color: #fafdf7;
}

h1 {
  font-size: clamp(2.5rem, 5vw + 1rem, 3.75rem);
  line-height: 1.15;
  font-weight: 700;
  color: #0f2a0a;
  margin-bottom: 1.2rem;
}

h2 {
  font-size: clamp(1.875rem, 3.75vw + 0.75rem, 2.8125rem);
  line-height: 1.25;
  font-weight: 600;
  color: #1a3d12;
  margin-bottom: 1rem;
}

h3 {
  font-size: clamp(1.5rem, 3vw + 0.6rem, 2.25rem);
  line-height: 1.3;
  font-weight: 600;
  color: #2d5016;
  margin-bottom: 0.8rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: #3d6b20;
  text-decoration: none;
  transition: color 0.25s ease;
}

a:hover {
  color: #2d5016;
  text-decoration: underline;
}

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

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

/* Header */
header {
  background: linear-gradient(135deg, #2d5016 0%, #4a7c2a 100%);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

.logo {
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}

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

.menu-checkbox {
  display: none;
}

.menu-toggle {
  display: none;
  font-size: 1.8rem;
  color: #fff;
  cursor: pointer;
  background: none;
  border: none;
}

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

nav a {
  color: #fff;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  transition: background 0.25s ease;
}

nav a:hover {
  background: rgba(255, 255, 255, 0.15);
  text-decoration: none;
}

nav a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.25);
  font-weight: 600;
}

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

  nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #2d5016;
    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 0;
  }

  nav a {
    display: block;
    padding: 1rem 1.5rem;
    border-radius: 0;
  }
}

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

section {
  margin-bottom: 4rem;
}

/* Hero Section */
.hero {
  background: linear-gradient(to bottom, #e8f5e0 0%, #fafdf7 100%);
  padding: 4rem 2rem;
  border-radius: 16px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  color: #0f2a0a;
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #2d5016;
  max-width: 900px;
  margin: 0 auto 2rem;
}

.hero-icon {
  margin: 2rem auto 0;
  display: block;
}

/* Intro Section */
.intro {
  background: #fff;
  padding: 3rem 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.intro h2 {
  text-align: center;
  margin-bottom: 2.5rem;
}

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

.intro-item {
  background: #f9fcf7;
  padding: 2rem;
  border-radius: 10px;
  border-left: 4px solid #3d6b20;
}

.intro-symbol {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 1rem;
}

.intro-item h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

/* Features Section */
.features {
  background: linear-gradient(135deg, #e8f5e0 0%, #d4ecc5 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  position: relative;
}

.features h2 {
  text-align: center;
  margin-bottom: 1.5rem;
}

.features > p {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
}

.feature-icon {
  margin: 1.5rem auto;
  display: block;
}

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

.feature-card {
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  color: #2d5016;
}

/* Tips Section */
.tips {
  background: #fff;
  padding: 3rem 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.tips h2 {
  margin-bottom: 1.5rem;
}

.tips p {
  max-width: 900px;
  margin: 0 auto 1.5rem;
  font-size: 1.05rem;
  line-height: 1.7;
}

.tip-icon {
  margin: 1.5rem auto;
  display: block;
}

/* CTA Section */
.cta {
  background: linear-gradient(135deg, #2d5016 0%, #4a7c2a 100%);
  color: #fff;
  padding: 3rem 2rem;
  border-radius: 12px;
  text-align: center;
}

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

.cta p {
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto 1.5rem;
}

.contact-info {
  font-size: 1.15rem;
  font-weight: 500;
  margin-top: 2rem;
}

.contact-symbol {
  font-size: 1.5rem;
  margin-right: 0.5rem;
}

/* Page Header */
.page-header {
  background: linear-gradient(135deg, #e8f5e0 0%, #d4ecc5 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  text-align: center;
  margin-bottom: 3rem;
}

.page-header h1 {
  margin-bottom: 0.8rem;
}

.page-header p {
  font-size: 1.1rem;
  color: #2d5016;
  margin: 0;
}

/* Content Section */
.content-section {
  background: #fff;
  padding: 2.5rem 2rem;
  border-radius: 10px;
  margin-bottom: 2rem;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  position: relative;
}

.content-section h2 {
  margin-bottom: 1.5rem;
  border-bottom: 3px solid #3d6b20;
  padding-bottom: 0.8rem;
}

.content-section p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

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

/* Contact Section */
.contact-section {
  background: #fff;
  padding: 3rem 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.contact-content h2 {
  text-align: center;
  margin-bottom: 1.5rem;
}

.contact-content > p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  font-size: 1.05rem;
}

.contact-info-box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.contact-item {
  background: #f9fcf7;
  padding: 2rem;
  border-radius: 10px;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  border: 2px solid #e8f5e0;
}

.contact-item .contact-symbol {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.contact-details h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #2d5016;
}

.contact-details p {
  margin-bottom: 0.5rem;
}

.contact-desc {
  font-size: 0.95rem;
  color: #555;
  margin: 0;
}

.contact-icon {
  display: block;
  margin: 2rem auto;
}

.contact-additional {
  background: #e8f5e0;
  padding: 2rem;
  border-radius: 10px;
  margin-top: 3rem;
}

.contact-additional h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #2d5016;
}

.contact-additional p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0;
}

/* Document Container */
.doc-container {
  max-width: 800px;
  margin: 4rem auto;
  padding: 3rem 2rem;
  text-align: center;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

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

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

.doc-container a {
  display: inline-block;
  background: #3d6b20;
  color: #fff;
  padding: 0.8rem 1.8rem;
  border-radius: 6px;
  font-weight: 500;
  margin-top: 1rem;
  transition: background 0.25s ease;
}

.doc-container a:hover {
  background: #2d5016;
  text-decoration: none;
}

/* Footer */
footer {
  background: #1a3d12;
  color: #e8f5e0;
  padding: 2rem 0;
  margin-top: 4rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

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

footer nav {
  display: flex;
  gap: 1.5rem;
}

footer a {
  color: #e8f5e0;
  font-size: 0.95rem;
}

footer a:hover {
  color: #fff;
}

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

  .hero {
    padding: 3rem 1.5rem;
  }

  .intro-grid,
  .features-list,
  .contact-info-box {
    grid-template-columns: 1fr;
  }

  section {
    margin-bottom: 3rem;
  }
}