/* ======================
   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;
}
.privacy-container {
	max-width: 1000px;
	margin: 2rem auto;
	padding: 2rem;
}

.privacy-header {
	text-align: center;
	margin-bottom: 3rem;
}

.privacy-title {
	font-size: 2.5rem;
	color: #2a3c54;
	margin-bottom: 1rem;
}

.privacy-description {
	color: #666;
	font-size: 1.1rem;
	line-height: 1.6;
	max-width: 800px;
	margin: 0 auto;
}

.privacy-content {
	background: #fff;
	padding: 2rem;
	border-radius: 15px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.privacy-section {
	margin-bottom: 2.5rem;
	padding-bottom: 2rem;
	border-bottom: 1px solid #eee;
}

.privacy-section:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.privacy-section h2 {
	color: #2a3c54;
	font-size: 1.8rem;
	margin-bottom: 1.5rem;
	display: flex;
	align-items: center;
	gap: 1rem;
}

.privacy-section h2 i {
	color: #2196f3;
	font-size: 1.5rem;
}

.privacy-section p {
	color: #666;
	line-height: 1.6;
	margin-bottom: 1rem;
}

.privacy-section ul {
	list-style: none;
	padding-left: 1.5rem;
	margin-bottom: 1rem;
}

.privacy-section li {
	color: #666;
	margin-bottom: 0.8rem;
	position: relative;
	padding-left: 1.5rem;
}

.privacy-section li::before {
	content: '\f058';
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	color: #2196f3;
	position: absolute;
	left: 0;
}

.privacy-section .highlight {
	background: #f0f7ff;
	padding: 1.5rem;
	border-radius: 10px;
	margin: 1.5rem 0;
}

.privacy-section .highlight h3 {
	color: #2a3c54;
	margin-bottom: 1rem;
	font-size: 1.2rem;
}

.last-updated {
	text-align: center;
	color: #666;
	margin-top: 2rem;
	font-style: italic;
}

.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;
}

@media (max-width: 768px) {
	.privacy-container {
		margin: 1rem;
		padding: 1rem;
	}

	.privacy-title {
		font-size: 2rem;
	}

	.privacy-section h2 {
		font-size: 1.5rem;
	}
}