 body {
      font-family: 'Noto Sans JP', 'Helvetica Neue', sans-serif;
      margin: 0;
      padding: 0;
      line-height: 1.75;
      color: #2c2c2c;
      background-color: #fff;
      font-size: 16px;
    }
    header {
      background-color: #1c3950;
      color: white;
      padding: 16px 20px;
      display: flex;
      align-items: center;
      border-radius: 0 0 10px 10px;
    }

header h1 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 500;
  margin-left: 16px; /* 버튼과 타이틀 사이 간격 */
}

.back-button {
  background-color: transparent;
  color: white;
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
  text-decoration: none;
}
.back-button:hover {
  text-decoration: underline;
}

   
    h2 {
      color: #1c3950;
      font-size: 1.5rem;
      margin-top: 48px;
      margin-bottom: 20px;
     
      padding-bottom: 6px;
    }
       .container {
      max-width: 800px;
      margin: 40px auto;
      padding: 0 20px;
    }
   .search-box {
  margin-bottom: 30px;
  margin-left: 40px;
    margin-right: 40px;
}
.search-wrapper {
  display: flex;
  max-width: 100%;
}

.search-wrapper input {
  flex: 1;
  padding: 12px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 8px 0 0 8px;
}

.search-wrapper button {
  padding: 12px 16px;
  background-color: #1c3950;
  color: white;
  border: none;
  border-radius: 0 8px 8px 0;
  cursor: pointer;
}

.search-wrapper button i {
  font-size: 16px;
}

.search-wrapper button:hover {
  background-color: #162c3d;
}
.search-wrapper i {
  font-size: 16px;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}

#no-results {
  display: none;
  opacity: 0;
  color: #1c3950;
  margin-top: 12px;
  font-weight: 500;
  text-align: center;
  animation: fadeIn 0.4s ease forwards;
}

    h2.category {
      border-left: 5px solid #1c3950;
      padding-left: 10px;
      margin-top: 40px;
      font-size: 18px;
      color: #1c3950;
    }
    .faq-item {
      border-bottom: 1px solid #ddd;
      margin-bottom: 10px;
    }
    .faq-question {
      background-color: #f7f9fc;
      padding: 12px 16px;
      cursor: pointer;
    
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-radius: 6px;
      transition: background-color 0.3s;
    }
    .faq-question:hover {
      background-color: #e2eaf1;
    }
    .faq-answer {
      display: none;
      padding: 10px 16px;
      background-color: #fefefe;
      border-left: 1px solid #e2eaf1;
      border-right: 1px solid #e2eaf1;
      border-radius: 0 0 6px 6px;
    }
    .faq-question.active + .faq-answer {
      display: block;
    }
    mark {
  background-color: #f5de77;
  padding: 0 2px;
  border-radius: 3px;
}
    .arrow {
      transform: rotate(0deg);
      transition: transform 0.3s;
      margin-left: 25px;
    }
    .faq-question.active .arrow {
      transform: rotate(180deg);
    }
   .copyright-wrapper {
    display: flex;
    justify-content: center; /* 가운데 정렬 */
    gap: 10px;
    font-size: 11px;
    color: #434242;
    margin-bottom: 10px;
}



/* 각각 링크 스타일 */
.copyright-note {
  color: #434242;
  text-decoration: none;
}

.copyright-note:hover {
  text-decoration: underline;
  color: #666;
}
    .inline-link {
  color: #1c3950;
  font-weight: 500;
  text-decoration: underline;
  margin-left: 4px;
}

.inline-link:hover {
  color: #0c2233;
  text-decoration: none;
}

.footer-links {
  text-align: center;
  margin-bottom: 8px;
  font-size: 13px;
}

.footer-links a {
  color: #666;
  text-decoration: none;
  margin: 0 8px;
  font-weight: 500;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #1c3950;
  text-decoration: underline;
}

.separator {
  color: #ccc;
}
footer{

    margin-top: 50px;
}
