/* Terms of Service Page */
.term-section {
	padding: 160px 0;
	background-color: #ffffff;
	min-height: calc(100vh - 200px);
}

.term-container {
	max-width: 900px;
	margin: 0 auto;
	padding: 0 40px;
}

.term-content {
	width: 100%;
}

.term-header {
	margin-bottom: 30px;
	padding-bottom: 20px;
	border-bottom: 2px solid #E5E7EB;
}

.term-title {
	font-size: 30px;
	font-weight: 600;
	color: var(--main-color);
	margin: 0 0 12px 0;
	line-height: 1.2;
}

.term-last-updated {
	font-size: 14px;
	color: #6B7280;
	margin: 0;
	font-weight: 400;
}

.term-intro {
	margin-bottom: 30px;
}

.term-intro-text {
	font-size: 16px;
	font-weight: 400;
	color: #374151;
	line-height: 1.8;
	margin: 0;
}

.term-body {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.term-section-item {
	width: 100%;
}

.term-section-title {
	font-size: 18px;
	font-weight: 600;
	color: var(--main-color);
	margin: 0 0 16px 0;
	line-height: 1.3;
}

.term-text {
	font-size: 16px;
	font-weight: 400;
	color: #374151;
	line-height: 1.8;
	margin: 0 0 16px 0;
}

.term-text:last-child {
	margin-bottom: 0;
}

.term-list {
	list-style: none;
	padding: 0;
	margin: 0 0 16px 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.term-list li {
	font-size: 16px;
	font-weight: 400;
	color: #374151;
	line-height: 1.8;
	padding-left: 28px;
	position: relative;
}

.term-list li::before {
	content: '•';
	position: absolute;
	left: 0;
	color: var(--sec-color);
	font-size: 20px;
	font-weight: 600;
	line-height: 1.4;
}

.term-contact {
	font-size: 16px;
	font-weight: 400;
	color: #374151;
	line-height: 1.8;
	margin: 16px 0 0 0;
	padding: 20px;
	background-color: #F9FAFB;
	border-left: 3px solid var(--sec-color);
	border-radius: 4px;
}