:root{--build-id:"a106dad9-5d7b-4963-95ce-5dcff9333067";}
/* 공통 스타일 - warmboldfi.site */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@400;500;700&display=swap");

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

body {
  font-family: "Noto Sans KR", sans-serif;
  background-color: #f5f7fa;
  color: #374151;
  line-height: 1.6;
}

header {
  background-color: #ffffff;
  padding: 1rem 2rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}

nav {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1d4ed8;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  flex-wrap: wrap;
}

.nav-links a {
  color: #374151;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #1d4ed8;
}

main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

h1 {
  font-size: 2.5rem;
  color: #1d4ed8;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

h2 {
  font-size: 2rem;
  color: #1d4ed8;
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

h3 {
  font-size: 1.5rem;
  color: #374151;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

p {
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

section {
  background-color: #ffffff;
  padding: 2rem;
  margin-bottom: 2rem;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.hero-section {
  text-align: center;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

.cta-button {
  display: inline-block;
  background-color: #1d4ed8;
  color: #ffffff;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 700;
  margin-top: 1rem;
  transition: background-color 0.3s;
}

.cta-button:hover {
  background-color: #1e40af;
}

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

.feature-card {
  background-color: #f9fafb;
  padding: 1.5rem;
  border-radius: 6px;
  border-left: 4px solid #1d4ed8;
}

.feature-card h3 {
  margin-top: 0;
}

.routine-list {
  list-style: none;
  padding-left: 0;
}

.routine-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid #e5e7eb;
}

.routine-list li:last-child {
  border-bottom: none;
}

.review-card {
  background-color: #f9fafb;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border-radius: 6px;
  border-left: 4px solid #1d4ed8;
}

.review-author {
  font-weight: 700;
  color: #1d4ed8;
  margin-top: 0.5rem;
}

.faq-item {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e5e7eb;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  font-weight: 700;
  color: #1d4ed8;
  margin-bottom: 0.5rem;
}

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

.pricing-card {
  background-color: #ffffff;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
}

.pricing-card.featured {
  border-color: #1d4ed8;
  box-shadow: 0 4px 12px rgba(29, 78, 216, 0.15);
}

.price {
  font-size: 2rem;
  font-weight: 700;
  color: #1d4ed8;
  margin: 1rem 0;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.submit-button {
  background-color: #1d4ed8;
  color: #ffffff;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 6px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

.submit-button:hover {
  background-color: #1e40af;
}

.blog-list {
  display: grid;
  gap: 1.5rem;
}

.blog-card {
  background-color: #f9fafb;
  padding: 1.5rem;
  border-radius: 6px;
  border-left: 4px solid #1d4ed8;
}

.blog-date {
  color: #6b7280;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.contact-info {
  background-color: #eff6ff;
  padding: 1.5rem;
  border-radius: 6px;
  margin-bottom: 2rem;
}

footer {
  background-color: #ffffff;
  padding: 2rem;
  text-align: center;
  margin-top: 3rem;
  border-top: 1px solid #e5e7eb;
}

footer a {
  color: #1d4ed8;
  text-decoration: none;
  margin: 0 0.5rem;
}

footer a:hover {
  text-decoration: underline;
}

.icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

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

  h2 {
    font-size: 1.5rem;
  }

  nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    flex-direction: column;
    gap: 0.75rem;
  }

  main {
    padding: 1rem;
  }

  section {
    padding: 1.5rem;
  }
}