:root {
	--primary-color: #327ab9;
	--primary-dark: #1c5486;
	--primary-light: #4d69b4;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Inter', sans-serif;
	line-height: 1.6;
	color: #333;
	background: #f8f9fa;
}

/* Header */
.header {
	background: white;
	padding: 1rem 0;
	box-shadow: 0 2px 20px rgba(0,0,0,0.1);
	margin-bottom: 2rem;
}

.header-logo {
	width: 150px;
}

.back-link {
	color: var(--primary-color);
	text-decoration: none;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	transition: color 0.3s ease;
}

.back-link:hover {
	color: var(--primary-dark);
}

/* Main Content */
.main-content {
	background: white;
	border-radius: 20px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	padding: 3rem;
	margin-bottom: 3rem;
}

.page-title {
	font-size: 2.5rem;
	font-weight: 700;
	color: #2c3e50;
	margin-bottom: 2rem;
	text-align: center;
}

.section-title {
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--primary-color);
	margin-top: 2.5rem;
	margin-bottom: 1rem;
	border-left: 4px solid var(--primary-color);
	padding-left: 1rem;
}

.subsection-title {
	font-size: 1.2rem;
	font-weight: 600;
	color: #2c3e50;
	margin-top: 1.5rem;
	margin-bottom: 0.5rem;
}

.content-text {
	color: #555;
	line-height: 1.8;
	margin-bottom: 1rem;
}

.content-text strong {
	color: #2c3e50;
	font-weight: 600;
}

.highlight-box {
	background: #f8f9fa;
	padding: 2rem;
	border-radius: 15px;
	margin: 2rem 0;
	border-left: 4px solid var(--primary-color);
}

.highlight-box h4 {
	color: var(--primary-color);
	margin-bottom: 1rem;
	font-weight: 600;
}

.contact-info {
	background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
	color: white;
	padding: 2rem;
	border-radius: 15px;
	margin: 2rem 0;
}

.contact-info h4 {
	margin-bottom: 1rem;
	font-weight: 600;
}

.contact-item {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 0.5rem;
}

.contact-item i {
	width: 20px;
}

.rights-list {
	background: #e8f4ff;
	padding: 2rem;
	border-radius: 15px;
	margin: 2rem 0;
	border: 1px solid rgba(61, 89, 164, 0.2);
}

.rights-list h4 {
	color: var(--primary-color);
	margin-bottom: 1rem;
	font-weight: 600;
}

.rights-list ul {
	list-style: none;
	padding: 0;
}

.rights-list li {
	padding: 0.5rem 0;
	border-bottom: 1px solid rgba(61, 89, 164, 0.1);
	color: #555;
}

.rights-list li:last-child {
	border-bottom: none;
}

.rights-list li i {
	color: var(--primary-color);
	margin-right: 0.5rem;
}

.disclaimer {
	background: linear-gradient(135deg, #e74c3c, #c0392b);
	color: white;
	padding: 2rem;
	border-radius: 15px;
	margin-top: 3rem;
}

.disclaimer h4 {
	margin-bottom: 1rem;
	font-weight: 600;
}

/* Footer */
/* Footer */
.footer {
	background: #2c3e50;
	color: white;
	padding: 3rem 0 1rem;
}

.footer-logo {
	width: 150px;
	object-fit: contain;
}

.footer-text h3 {
	font-size: 1.5rem;
	margin-bottom: 0.5rem;
}

.footer-text p {
	opacity: 0.8;
	margin: 0;
}

.footer-bottom {
	border-top: 1px solid #34495e;
	padding-top: 2rem;
	margin-top: 2rem;
	color: #95a5a6;
	text-align: center;
}

.footer-links {
	margin-bottom: 1rem;
}

.footer-links a {
	color: #95a5a6;
	text-decoration: none;
	margin: 0 1rem;
	transition: color 0.3s ease;
}

.footer-links a:hover {
	color: var(--primary-light);
}

/* Table of Contents */
.toc {
	background: #f8f9fa;
	padding: 2rem;
	border-radius: 15px;
	margin-bottom: 3rem;
	border: 1px solid #e9ecef;
}

.toc h4 {
	color: var(--primary-color);
	margin-bottom: 1rem;
	font-weight: 600;
}

.toc ol {
	color: #555;
}

.toc a {
	color: var(--primary-color);
	text-decoration: none;
}

.toc a:hover {
	color: var(--primary-dark);
	text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
	.main-content {
		padding: 2rem 1.5rem;
	}

	.page-title {
		font-size: 2rem;
	}

	.highlight-box,
	.contact-info,
	.rights-list {
		padding: 1.5rem;
	}
}