/* Privacy Policy Specific Styles */
.privacy-policy-section {
	background: #0A0A0A;
	min-height: 100vh;
	padding-top: 120px;
	padding-bottom: 80px;
}

.content-wrapper {
	display: flex;
	gap: 40px;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Table of Contents Styles */
.toc {
	flex: 0 0 300px;
	position: sticky;
	top: 120px;
	height: fit-content;
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(10px);
	border-radius: 15px;
	padding: 30px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	z-index: 10;
}

.toc h2 {
	color: #fff;
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 20px;
	font-family: "Space Grotesk", sans-serif;
}

.toc-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.toc-item {
	margin-bottom: 8px;
}

.toc-link {
	display: block;
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	padding: 10px 15px;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 500;
	transition: all 0.3s ease;
	border-left: 3px solid transparent;
}

.toc-link:hover,
.toc-link.active {
	color: #fff;
	background: rgba(255, 255, 255, 0.1);
	border-left-color: #04F;
	text-decoration: none;
}

/* Main Content Styles */
.content {
	flex: 1;
	max-width: 800px;
}

.content-section {
	margin-bottom: 60px;
	opacity: 1;
	transition: opacity 0.6s ease;
	scroll-margin-top: 120px; /* Add scroll margin for better anchor positioning */
}

.content-section h2 {
	color: #fff;
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 25px;
	font-family: "Space Grotesk", sans-serif;
	background-image: linear-gradient(90deg, #04F 0%, #E7417E 34.62%, #E27333 66.83%, #E54D6A 100%);
	color: transparent;
	background-clip: text;
	-webkit-background-clip: text;
}

.content-section h3 {
	color: #fff;
	font-size: 20px;
	font-weight: 600;
	margin: 30px 0 15px 0;
	font-family: "Space Grotesk", sans-serif;
}

.content-section p {
	color: rgba(255, 255, 255, 0.8);
	font-size: 16px;
	line-height: 1.7;
	margin-bottom: 20px;
}

.styled-list {
	list-style: none;
	padding: 0;
	margin: 20px 0;
}

.styled-list li {
	color: rgba(255, 255, 255, 0.8);
	font-size: 16px;
	line-height: 1.7;
	margin-bottom: 12px;
	padding-left: 25px;
	position: relative;
}

.styled-list li::before {
	content: '•';
	color: #04F;
	font-size: 20px;
	position: absolute;
	left: 0;
	top: -2px;
}

/* Notice and Warning Boxes */
.notice,
.warning {
	padding: 20px;
	border-radius: 10px;
	margin: 25px 0;
	border-left: 4px solid;
}

.notice {
	background: rgba(4, 68, 255, 0.1);
	border-left-color: #04F;
}

.warning {
	background: rgba(255, 193, 7, 0.1);
	border-left-color: #FFC107;
}

.notice p,
.warning p {
	margin: 0;
	color: #fff;
}

/* Table Styles */
.privacy-table-container {
	overflow-x: auto;
	margin: 30px 0;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.05);
}

.privacy-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 14px;
}

.privacy-table th {
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
	font-weight: 600;
	padding: 15px 12px;
	text-align: left;
	border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.privacy-table td {
	color: rgba(255, 255, 255, 0.8);
	padding: 15px 12px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	vertical-align: top;
}

.privacy-table tr:hover {
	background: rgba(255, 255, 255, 0.05);
}

/* Contact Info Box */
.info {
	background: rgba(255, 255, 255, 0.05);
	border-radius: 10px;
	padding: 25px;
	margin: 25px 0;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.info p {
	margin-bottom: 8px;
	color: rgba(255, 255, 255, 0.9);
}

/* Last Updated */
.last-updated-bottom {
	text-align: center;
	margin-top: 60px;
	padding-top: 30px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.last-updated-bottom span {
	color: rgba(255, 255, 255, 0.6);
	font-size: 14px;
	font-style: italic;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
	.content-wrapper {
		flex-direction: column;
		gap: 30px;
	}

	.toc {
		flex: none;
		position: static;
		order: -1;
		top: auto;
	}

	.privacy-policy-section {
		padding-top: 100px;
	}

	.content-section {
		scroll-margin-top: 100px;
	}
}

@media (max-width: 768px) {
	.content-wrapper {
		padding: 0 15px;
	}

	.toc {
		padding: 20px;
	}

	.content-section h2 {
		font-size: 28px;
	}

	.content-section h3 {
		font-size: 18px;
	}

	.privacy-table {
		font-size: 12px;
	}

	.privacy-table th,
	.privacy-table td {
		padding: 10px 8px;
	}

	.privacy-policy-section {
		padding-top: 80px;
	}

	.content-section {
		scroll-margin-top: 80px;
	}
}

/* Smooth scroll behavior */
html {
	scroll-behavior: smooth;
}

/* Active section highlighting */
.content-section:target {
	animation: highlight 2s ease-in-out;
}

@keyframes highlight {
	0% { 
		background: rgba(4, 68, 255, 0.1); 
		border-radius: 10px;
	}
	100% { 
		background: transparent; 
	}
}

/* Ensure proper z-index stacking */
.header {
	z-index: 1000;
}

.toc {
	z-index: 100;
}

.content {
	z-index: 1;
}