.page-section {
  padding: 20px 10px 0 10px;  /* 아래쪽 여백 제거 */
  max-width: 1100px;
  margin: 0 auto;
  border-bottom: 1px solid #eee;
  text-align: center;
}

.page-section:last-child {
  border-bottom: none;
}

.page-image {
  margin-bottom: 0;  /* 이미지 하단 여백 제거 */
}

.page-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.page-image img:hover {
  transform: scale(1.02);
}

.page-section img {
  max-width: 100%;
}

.page-section h2 {
  font-size: 28px;
  color: #222;
}

.page-section .content {
  font-size: 18px;
  color: #444;
  text-align: left;
}

/* 네비게이션 관련 */
.top-nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: white;
  border-bottom: 1px solid #ddd;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
}

.site-title {
  font-size: 20px;
  font-weight: bold;
  color: #333;
  text-decoration: none;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.nav-menu li a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
}

.nav-menu li a:hover {
  color: #007BFF;
}

/* 상단 고정 메뉴 공간 제거 */
body {
  padding-top: 0;
}
