/* Base Styles */
body {
	margin: 0;
	font-family: Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
}

/* Navigation Styles */
nav {
	background-color: #ffffff;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 1000;
}

.nav-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 60px;
}

.logo {
	font-size: 24px;
	font-weight: bold;
	color: #333;
}

.nav-links {
	display: flex;
	gap: 24px;
}

.nav-links a {
	text-decoration: none;
	color: #333;
	font-weight: 500;
	padding: 8px 12px;
	transition: color 0.3s;
}

.nav-links a:hover {
	color: #007aff;
}

/* Terms Content Styles */
.terms-wrapper {
	max-width: 1200px;
	margin: 80px auto 40px;
	padding: 20px;
	background: #fff;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.terms-content {
	padding: 20px;
}

.terms-content h1 {
	font-size: 24px;
	margin-bottom: 30px;
	text-align: center;
}

.terms-content h2 {
	font-size: 20px;
	margin: 30px 0 15px;
	color: #333;
}

.terms-content h3 {
	font-size: 18px;
	margin: 25px 0 10px;
	color: #444;
}

.terms-content p {
	margin: 10px 0;
	line-height: 1.6;
	color: #666;
}

.terms-content ul,
.terms-content ol {
	margin: 10px 0 10px 20px;
}

.terms-content li {
	margin: 5px 0;
	line-height: 1.6;
	color: #666;
}

.article {
	margin-bottom: 30px;
}

/* Footer Styles */
footer {
	background-color: #fff;
	padding: 20px 0;
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Responsive Styles */
@media (max-width: 768px) {
	.nav-container {
		padding: 0 10px;
	}

	.nav-links {
		gap: 12px;
	}

	.nav-links a {
		padding: 6px 8px;
		font-size: 14px;
	}

	.terms-wrapper {
		margin: 60px auto 20px;
		padding: 10px;
	}

	.terms-content {
		padding: 10px;
	}

	.terms-content h1 {
		font-size: 20px;
	}

	.terms-content h2 {
		font-size: 18px;
	}

	.terms-content h3 {
		font-size: 16px;
	}
}

/* Hero Section Styles */
.hero {
	position: relative;
	height: 100vh;
	width: 100%;
	overflow: hidden;
}

.hero-content {
	position: relative;
	z-index: 10;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 0 20px;
}

.hero-image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3));
}

.hero-title {
	font-size: 4rem;
	font-weight: 800;
	color: #ffffff;
	margin-bottom: 1rem;
	line-height: 1.2;
}

.hero-subtitle {
	font-size: 1.5rem;
	color: #f3f4f6;
	max-width: 600px;
	margin: 0 auto;
}

@media (max-width: 768px) {
	.hero-title {
		font-size: 2.5rem;
	}

	.hero-subtitle {
		font-size: 1.125rem;
	}
}
