/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Sep 16 2025 | 01:23:29 */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
	line-height: 1.6;
	color: #333;
	background: #f8f9fa;
	padding: 40px 20px;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* History Timeline */
.history {
	padding: 80px 0;
	background: #f8f9fa;
}

.section-title {
	font-size: 36px;
	font-weight: 900;
	text-align: center;
	margin-bottom: 20px;
	color: #003876;
}

.section-subtitle {
	text-align: center;
	font-size: 18px;
	color: #666;
	margin-bottom: 50px;
}

.timeline {
	max-width: 800px;
	margin: 50px auto;
	position: relative;
}

.timeline::before {
	content: '';
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	width: 2px;
	height: 100%;
	background: #003876;
}

.timeline-item {
	display: flex;
	justify-content: space-between;
	margin-bottom: 40px;
	position: relative;
}

.timeline-item:nth-child(odd) {
	flex-direction: row-reverse;
}

.timeline-content {
	background: white;
	padding: 20px 30px;
	border-radius: 10px;
	box-shadow: 0 3px 10px rgba(0,0,0,0.1);
	width: 45%;
}

.timeline-date {
	font-weight: 700;
	color: #003876;
	margin-bottom: 10px;
	font-size: 18px;
}

.timeline-content p {
	font-family: 
    "Pretendard Variable", "Pretendard",
        -apple-system, BlinkMacSystemFont, 
        "Apple SD Gothic Neo", "Noto Sans KR", 
        "Segoe UI", "Malgun Gothic", "Apple Gothic",
        "Roboto", "Helvetica Neue", Arial, 
        sans-serif;
	line-height: 1.8;
	color: #333;
	font-weight: normal;
}

.timeline-dot {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	width: 20px;
	height: 20px;
	background: #003876;
	border-radius: 50%;
	border: 4px solid white;
}

/* Mobile responsive */
@media (max-width: 768px) {
	.timeline::before {
		left: 30px;
	}

	.timeline-item {
		flex-direction: column !important;
	}

	.timeline-content {
		width: calc(100% - 60px);
		margin-left: 60px;
	}

	.timeline-dot {
		left: 30px;
	}
}

@media (max-width: 480px) {
	.section-title {
		font-size: 28px;
	}

	.section-subtitle {
		font-size: 16px;
		margin-bottom: 30px;
	}

	.timeline-content {
		padding: 15px 20px;
		margin-left: 50px;
		width: calc(100% - 50px);
	}

	.timeline-date {
		font-size: 16px;
	}

	.timeline::before {
		left: 20px;
	}

	.timeline-dot {
		left: 20px;
		width: 16px;
		height: 16px;
	}
}