  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; /* Flexbox 레이아웃 */
  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;
}

    .container {
      max-width: 960px;
      margin: 0 auto;
      padding: 20px 24px 0px 24px;
    }
    .intro {
      display: flex;
      justify-content: center;
      text-align: left;
      margin-bottom: 60px;
    }
    .intro-inner {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 24px;
      width: 100%;
    }
    .intro img {
      max-width: 100%;
      width: 100%;
      border-radius: 12px;
      height: auto;
    }
    .intro p {
      padding: 0 12px;
      font-size: 1rem;
      line-height: 1.8;
    }
    @media (min-width: 768px) {
      .intro-inner {
        flex-direction: row;
        align-items: flex-start;
        gap: 48px;
      }
      .intro img {
        width: 50%;
        max-width: 420px;
      }
      .intro p {
        width: 50%;
        padding: 0;
      }
    }
    h2 {
      color: #1c3950;
      font-size: 1.5rem;
      margin-bottom: 20px;
      border-bottom: 2px solid #1c3950;
      padding-bottom: 6px;
    }  .vision p, .vision ul {
      margin-bottom: 1em;
      font-size: 0.98rem;
    }
    footer {
      text-align: center;
      margin-top: 50px;
      padding: 14px 0;
     
    }
    .footer-links {
      margin-bottom: 8px;
    }
    .footer-links a {
      margin: 0 10px;
      font-size: 0.95rem;
      color: #555;
      text-decoration: none;
    }
    .footer-links a:hover {
      text-decoration: underline;
    }
.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;
    
}