/* 목적별 페이지 공통 스타일 */
.purpose-header {
  background: #fff;
  border-bottom: 1px solid #ddd;
  padding: 16px 0;
  font-family: 'Noto Sans KR', sans-serif;
}
.purpose-header .container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.purpose-header .logo {
  font-size: 1.4rem;
  font-weight: bold;
  color: #d40000;
  text-decoration: none;
}
.purpose-nav a {
  margin-left: 20px;
  color: #333;
  text-decoration: none;
  font-size: 1rem;
}
.purpose-nav a:hover {
  color: #d40000;
  font-weight: 600;
}

.purpose-banner {
  padding: 60px 20px;
  text-align: center;
  font-family: 'Noto Sans KR', sans-serif;
}
.purpose-banner h1 {
  font-size: 2.5rem;
  font-weight: bold;
}
.purpose-banner p {
  font-size: 1.1rem;
  color: #555;
}

.purpose-section {
  max-width: 800px;
  margin: 60px auto;
  padding: 0 20px;
  font-family: 'Noto Sans KR', sans-serif;
  line-height: 1.7;
  color: #333;
}
.purpose-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
.purpose-section h3 {
  font-size: 1.3rem;
  margin: 30px 0 10px;
  color: #444;
}
.purpose-section p {
  font-size: 1rem;
  margin-bottom: 20px;
}
.purpose-section ul {
  padding-left: 20px;
}
.purpose-section ul li {
  list-style: '✔ ';
  margin-bottom: 10px;
}
strong {
  font-weight: 600;
  color: #000;
}
@media (max-width: 768px) {
  .purpose-header .container {
    flex-direction: column;
    align-items: flex-start;
  }
  .purpose-nav {
    margin-top: 10px;
  }
  .purpose-nav a {
    margin: 0 10px 10px 0;
    display: inline-block;
  }
  .purpose-section {
    padding: 0 16px;
  }
}
