:root{--build-id:"640fd063-0429-4ed8-b1d5-eee0fc8ad242";}
:root {
  --bg: #fff5f8;
  --text: #2d3748;
  --muted: #fff1e6;
  --border: #fde68a;
  --primary: #0f766e;
  --accent: #0ea5e9;
  --radius: 10px;
  --shadow: 0 6px 24px rgba(0, 0, 0, 0.14);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #fff5f8;
  color: #2d3748;
  font-family: "Segoe UI Variable", "Segoe UI", system-ui, "Noto Sans KR", Arial, sans-serif;
  line-height: 1.6;
}

a {
  color: #0f766e;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

.card {
  background: var(--bg);
  border: none;
  border-radius: 10px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.14);
  padding: 16px;
}

header {
  position: sticky;
  top: 0;
  background: #fff5f8;
  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 {
  padding: 8px 10px;
  border-radius: 0;
  border-bottom: 2px solid transparent;
}

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

nav a.active {
  background: transparent;
  color: var(--primary);
  border-bottom-color: var(--primary);
}

main {
  padding: 24px 0;
}

section {
  margin: 24px 0;
}

.hero {
  text-align: center;
  padding: 48px 0;
}

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

.hero p {
  font-size: 1.2rem;
  margin-bottom: 32px;
}

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

.cta {
  text-align: center;
  margin: 24px 0;
}

.btn {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: bold;
  margin: 8px;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn:hover {
  background: #0d5d56;
  text-decoration: none;
}

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

.feature-card {
  background: white;
  padding: 24px;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

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

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

.product-card {
  background: white;
  padding: 24px;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.product-card h3 {
  color: var(--primary);
}

.discount {
  color: #dc2626;
  font-weight: bold;
}

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

.review-card {
  background: white;
  padding: 24px;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

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

.stars {
  color: #fbbf24;
  font-size: 1.2rem;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin: 32px 0;
}

.info-card {
  background: white;
  padding: 24px;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

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

.contact-form {
  background: white;
  padding: 32px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: var(--primary);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.faq-item {
  background: white;
  margin: 16px 0;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-left: 4px solid var(--primary);
}

.faq-question {
  font-weight: bold;
  color: var(--primary);
  margin-bottom: 12px;
  font-size: 1.1rem;
}

.faq-answer {
  color: var(--text);
  line-height: 1.6;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

th,
td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid #e5e7eb;
}

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

ul {
  list-style-type: none;
  padding: 0;
}

li {
  background: white;
  margin: 8px 0;
  padding: 16px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-left: 4px solid var(--primary);
}

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

footer a {
  color: var(--primary);
  margin: 0 8px;
}

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

  .features,
  .product-grid,
  .review-grid,
  .contact-info {
    grid-template-columns: 1fr;
  }

  nav {
    justify-content: center;
  }
}