html, body {
	margin: 0;
	padding: 0;
	width: 100vw;
	box-sizing: border-box;
	overflow-x: hidden;
	-ms-overflow-style: none;
	scrollbar-width: none;
}

.privacy-main-content {
	justify-content: center;
	align-items: flex-start;
	padding-bottom: 60px;
}

.privacy-card {
	position: relative;
	z-index: 2;
	width: calc(100% - 48px);
	max-width: 980px;
	margin: 0 auto;
	padding: 28px 26px;
	border-radius: 16px;
	border: 2px solid #fff;
	background-color: rgba(0,0,0,0.5);
	overflow: hidden;
	box-sizing: border-box;
}

.privacy-card-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.5);
	z-index: 1;
	pointer-events: none;
}

.privacy-card-content {
	position: relative;
	z-index: 2;
	color: #fff;
}

.privacy-subtitle {
	margin: 0 0 22px 0;
	text-align: center;
	font-family: 'Title', Arial, sans-serif;
	font-size: 1.2rem;
	letter-spacing: 1px;
	text-transform: uppercase;
	user-select: none;
}

.privacy-section {
	margin-top: 22px;
}

.privacy-section-title {
	margin: 0 0 10px 0;
	font-family: 'Title', Arial, sans-serif;
	font-size: 1.35rem;
	font-weight: 700;
	letter-spacing: 0.5px;
}

.privacy-subsection-title {
	margin: 14px 0 8px 0;
	font-family: 'Title', Arial, sans-serif;
	font-size: 1.1rem;
	font-weight: 700;
	letter-spacing: 0.3px;
}

.privacy-text {
	margin: 0 0 10px 0;
	font-family: 'Description', Arial, sans-serif;
	font-size: 1rem;
	line-height: 1.75;
	color: #fff;
}

.privacy-list {
	margin: 8px 0 14px 0;
	padding: 0;
	list-style: none;
}

.privacy-list li {
	position: relative;
	padding-left: 18px;
	margin: 8px 0;
	font-family: 'Description', Arial, sans-serif;
	font-size: 1rem;
	line-height: 1.75;
}

.privacy-list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.95em;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #fff;
	transform: translateY(-50%);
}

.privacy-card a {
	color: inherit;
}

.privacy-home-button-wrapper {
	margin-top: 26px;
	display: flex;
	justify-content: center;
}

.privacy-home-button {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 54px;
	height: 54px;
	border: 3px solid #fff;
	border-radius: 10px;
	background-color: rgba(255,255,255,0.5);
	transition: background-color 0.5s ease;
	text-decoration: none;
}

.privacy-home-button:hover {
	background-color: rgba(255,255,255,0.7);
}

.privacy-home-icon {
	width: 28px;
	height: 28px;
	object-fit: contain;
}

@media (max-width: 720px) {
	.privacy-card {
		width: calc(100% - 28px);
		padding: 20px 16px;
	}
	.privacy-subtitle {
		font-size: 1.05rem;
	}
	.privacy-section-title {
		font-size: 1.2rem;
	}
	.privacy-home-button {
		width: 50px;
		height: 50px;
	}
}
