footer {
	background-color: #f8f8f8;
	padding: 20px 20px;
	font-family: 'Noto Sans KR', sans-serif;
	z-index: 10;
	/* .content-section과 같거나 더 높게 설정 */
	background-color: #f8f8f8;
	/* 배경색 확인 */
	width: 100%;
	/* 기존 스타일 유지 */
	color: #333;
}

.footer-container {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	/* 반응형 대응 */
	max-width: 1200px;
	margin: 0 auto;
}

.footer-container>div {
	flex: 1;
	min-width: 250px;
	margin: 10px;
}

.footer-left h3,
.footer-center h3,
.footer-right h3 {
	font-size: 1.2rem;
	margin-bottom: 12px;
	color: #222;
}

.footer-left p,
.footer-right p {
	line-height: 1.6;
	font-size: 0.75rem;
}

.footer-center ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-center ul li {
	margin-bottom: 8px;
	font-size: 0.95rem;
}

.footer-center ul li a {
	text-decoration: none;
	color: #333;
	transition: color 0.2s ease;
}

.footer-center ul li a:hover {
	color: #0077cc;
	/* hover 시 강조 색상 */
}

/* 반응형 처리 */