body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
  background-color: #0d1b2a;
  color: #f5f5f5;
}

#lang-switcher {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 14px;
}

#lang-switcher a {
  color: #ffd700;
  text-decoration: none;
  font-weight: bold;
}

nav {
  width: 220px;
  background-color: #0d1b2a;
  padding: 20px;
  box-sizing: border-box;
  min-height: 100vh;
}

nav h2 {
  font-size: 18px;
  margin-bottom: 10px;
}

nav ul {
  padding-left: 0;
  list-style: none;
}

nav li {
  margin: 10px 0;
  display: flex;
  align-items: center;
}

nav li img {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}

.nav-link {
  text-decoration: none;
  color: #f5f5f5;
  font-size: 15px;
}

.nav-link:hover {
  color: #ffd700;
}

.nav-link.active {
  font-weight: bold;
  color: #ffd700;
}

.container {
  display: flex;
  min-height: 100vh;
}

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

.content {
  flex-grow: 1;
  padding: 60px 40px;
  max-width: 800px;
  margin: 0 auto;
  box-sizing: border-box;
  line-height: 1.8;
}

h1 {
  color: #ffd700;
  margin-bottom: 30px;
}

blockquote {
  font-style: italic;
  margin-bottom: 30px;
  color: #ddd;
}

.footer {
  text-align: center;
  margin-top: 60px;
  font-size: 0.9em;
  color: #aaa;
}

.footer-link {
  color: #ffd700;
  text-decoration: none;
}

.footer-link:hover {
  text-decoration: underline;
}

.footer-separator {
  margin-top: 60px;
  margin-bottom: 20px;
  border: 0;
  height: 1px;
  background: #555;
}

/* 기존 highlight 정의에 추가하거나 새로 작성 */
.highlight {
  color: #f0c000; 
  font-style: italic; /* ✅ 이탤릭체 적용 */
}

.bold-italic {
  font-weight: bold;
  font-style: italic;
}


/* @media screen and (max-width: 768px) {*/
@media screen and (max-width: 1366px) {
  #nav-placeholder nav {
    display: none !important;
  }
   .content {
    margin-left: 0 !important;
    padding: 0 16px;
  }
} 

.page-header {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  color: #cbd5e1;
  font-size: 1.2rem;
  font-weight: 400;
  z-index: 100; /* 다른 요소 위에 올라오도록 */
}

.page-header img {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  object-fit: cover;
  opacity: 0.9;
}

.faq-item a {
  color: red;
  text-decoration: none; 
}

.faq-item p {
  margin-left: 2.5em;
}

.centered-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 16px;
}

.center-text {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

/* ✅ 반응형 대응 추가 */
  @media screen and (max-width: 768px) {
    h1 {
      font-size: 1.5em;
    }
    section {
      padding: 0 20px;
    }
    nav {
      font-size: 0.95rem;
    }
  }
