:root{--build-id:"36a272c8-c889-4b1f-ad4e-6edc9f2ddca5";}
/* 빙그레체Ⅱ 폰트 로드 */
@import url("https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_one@1.0/BinggraeSamanco.woff");

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

body {
  font-family: "Binggrae", "BinggraeSamanco", sans-serif;
  background-color: #fefce8;
  color: #0b5345;
  line-height: 1.6;
}

header {
  background-color: #fefce8;
  padding: 1.5rem 2rem;
  border-bottom: 2px solid #d9480f;
}

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

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #d9480f;
  text-decoration: none;
}

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

.nav-menu a {
  color: #0b5345;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-menu a:hover {
  color: #d9480f;
}

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

h1 {
  font-size: 2.5rem;
  color: #0b5345;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2rem;
  color: #0b5345;
  margin-bottom: 1rem;
  margin-top: 2rem;
}

h3 {
  font-size: 1.5rem;
  color: #0b5345;
  margin-bottom: 0.8rem;
}

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

section {
  margin-bottom: 3rem;
}

.hero {
  text-align: center;
  padding: 3rem 0;
}

.cta-button {
  display: inline-block;
  background-color: #d9480f;
  color: #fefce8;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.2rem;
  font-weight: bold;
  margin-top: 1.5rem;
  transition: background-color 0.3s;
}

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

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

.card {
  background-color: #fffef5;
  border: 2px solid #d9480f;
  border-radius: 12px;
  padding: 2rem;
}

.card h3 {
  color: #d9480f;
  margin-top: 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background-color: #fffef5;
}

th,
td {
  padding: 1rem;
  text-align: left;
  border: 1px solid #d9480f;
}

th {
  background-color: #d9480f;
  color: #fefce8;
  font-weight: bold;
}

.faq-item {
  background-color: #fffef5;
  border-left: 4px solid #d9480f;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.faq-item h3 {
  color: #d9480f;
  margin-top: 0;
}

.review-card {
  background-color: #fffef5;
  border: 2px solid #0b5345;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.review-card p {
  font-style: italic;
}

.contact-form {
  background-color: #fffef5;
  padding: 2rem;
  border-radius: 12px;
  border: 2px solid #d9480f;
  max-width: 600px;
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: bold;
  color: #0b5345;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 2px solid #0b5345;
  border-radius: 6px;
  background-color: #fefce8;
  color: #0b5345;
  font-family: "Binggrae", sans-serif;
  font-size: 1rem;
}

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

footer {
  background-color: #0b5345;
  color: #fefce8;
  padding: 2rem;
  text-align: center;
  margin-top: 4rem;
}

footer a {
  color: #fefce8;
  text-decoration: underline;
  margin: 0 0.5rem;
}

footer a:hover {
  color: #d9480f;
}

.icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.highlight {
  color: #d9480f;
  font-weight: bold;
}

.schedule-table {
  margin: 2rem 0;
}

.routine-step {
  background-color: #fffef5;
  border-left: 4px solid #d9480f;
  padding: 1rem;
  margin-bottom: 1rem;
}

.routine-step h3 {
  margin-top: 0;
}