body {
  margin: 0;
  font-family: 'Noto Sans KR', sans-serif;
  background-color: #eaeaea;
}

header {
  background-color: #cecbcb;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 40px;
  border-bottom: 1px solid #ccc;
}

.logo img {
  height: 74px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 24px;
  margin: 0;
}

nav a {
  text-decoration: none;
  color: #222;
  font-size: 0.95rem;
  font-weight: 500;
}

.guide-container {
  max-width: 1000px;
  margin: 40px auto;
  padding: 40px;
  background-color: #fefefe;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.guide-section {
  margin-bottom: 60px;
}

.guide-section h2 {
  font-size: 1.6rem;
  margin-bottom: 16px;
  color: #444;
}

.guide-section p {
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
}

.guide-img {
  width: 100%;
  border-radius: 16px;
  margin-top: 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.faq-box {
  background-color: #f1f1f1;
  border-radius: 12px;
  padding: 24px;
  margin-top: 24px;
}

.faq-box h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.faq-box p {
  font-size: 0.95rem;
  color: #555;
}
