:root{--build-id:"ec4a2943-760c-4e70-9768-f200cc6c7e92";}
:root {
  --bg: #faf3e8;
  --text: #5b0f1a;
  --muted: #e7e5e4;
  --border: #d6d3d1;
  --primary: #157a6e;
  --accent: #065f46;
  --radius: 20px;
  --shadow: 0 6px 24px rgba(0, 0, 0, 0.14);
  --container: 860px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "LINE Seed KR", "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", system-ui, Arial, sans-serif;
  line-height: 1.6;
}

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 24px;
}

.card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 16px;
}

header {
  position: sticky;
  top: 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  z-index: 100;
}

nav {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

nav a {
  background: var(--muted);
  border-radius: 9999px;
  padding: 6px 14px;
}

nav a.active {
  background: var(--primary);
  color: #fff;
}

main {
  padding: 24px 0;
}

section {
  margin: 24px 0;
}

footer {
  margin-top: 24px;
  padding: 16px 0;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: #666;
  text-align: center;
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  margin: 32px 0;
}

.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  color: var(--text);
}

.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 24px;
}

.cta-button,
.btn {
  background: var(--primary);
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  display: inline-block;
  font-weight: bold;
  margin-right: 16px;
  margin-bottom: 8px;
}

.cta-button:hover,
.btn:hover {
  background: var(--accent);
  text-decoration: none;
}

.hero-image {
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
}

th,
td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

th {
  background: var(--primary);
  color: white;
  font-weight: bold;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 24px 0;
}

.feature-card {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.feature-card h3 {
  margin-top: 0;
  color: var(--primary);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 24px 0;
}

.product-card {
  background: white;
  padding: 16px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.product-card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 12px;
}

.product-card h3 {
  margin: 8px 0;
  color: var(--primary);
}

.highlight {
  background: #fff3cd;
  border-left: 4px solid var(--primary);
  padding: 12px 16px;
  margin: 16px 0;
}

.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
}

.feature-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  nav {
    justify-content: center;
  }
}