/* ======================
   RESET & BASE STYLES
   ====================== */
   * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
      Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}
.terms-container {
	max-width: 1000px;
	margin: 2rem auto;
	padding: 2rem;
}

.terms-header {
	text-align: center;
	margin-bottom: 3rem;
}

.terms-title {
	font-size: 2.5rem;
	color: #2a3c54;
	margin-bottom: 1rem;
}

.terms-description {
	color: #666;
	font-size: 1.1rem;
	line-height: 1.6;
	max-width: 800px;
	margin: 0 auto;
}

.terms-content {
	background: #fff;
	padding: 2rem;
	border-radius: 15px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.terms-section {
	margin-bottom: 2.5rem;
	padding-bottom: 2rem;
	border-bottom: 1px solid #eee;
}

.terms-section:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.section-title {
	color: #2a3c54;
	font-size: 1.8rem;
	margin-bottom: 1.5rem;
	display: flex;
	align-items: center;
	gap: 1rem;
}

.section-title i {
	color: #2196f3;
	font-size: 1.5rem;
}

.section-content {
	color: #666;
	line-height: 1.6;
}

.section-content p {
	margin-bottom: 1rem;
}

.section-content ul {
	list-style: none;
	padding-left: 1.5rem;
	margin-bottom: 1rem;
}

.section-content li {
	margin-bottom: 0.8rem;
	position: relative;
	padding-left: 1.5rem;
}

.section-content li::before {
	content: '\f058';
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	color: #2196f3;
	position: absolute;
	left: 0;
}

.important-notice {
	background: #fff3e0;
	padding: 1.5rem;
	border-radius: 10px;
	margin: 1.5rem 0;
	border-left: 4px solid #ff9800;
}

.important-notice h3 {
	color: #2a3c54;
	margin-bottom: 1rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.important-notice h3 i {
	color: #ff9800;
}

.table-of-contents {
	background: #f8f9fa;
	padding: 1.5rem;
	border-radius: 10px;
	margin-bottom: 2rem;
}

.table-of-contents h3 {
	color: #2a3c54;
	margin-bottom: 1rem;
}

.table-of-contents ul {
	list-style: none;
	padding-left: 0;
}

.table-of-contents li {
	margin-bottom: 0.5rem;
}

.table-of-contents a {
	color: #2196f3;
	text-decoration: none;
	transition: color 0.3s ease;
}

.table-of-contents a:hover {
	color: #1976d2;
}

.last-updated {
	text-align: center;
	color: #666;
	margin-top: 2rem;
	font-style: italic;
}

@media (max-width: 768px) {
	.terms-container {
		margin: 1rem;
		padding: 1rem;
	}

	.terms-title {
		font-size: 2rem;
	}

	.section-title {
		font-size: 1.5rem;
	}
}