body {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	min-height: 100vh;
	text-align: center;
	padding: 1rem;
	box-sizing: border-box;
}

.privacy-policy-container {
	width: 95%;
	max-width: 800px;
	padding: 15px;
	margin-top: 25px;
	margin-bottom: 25px;

	display: flex;
	flex-direction: column;
	row-gap: 15px;
	align-items: center;

	border: 4px solid rgba(34, 34, 32, 0.15);
	border-radius: 12px;
	color: white;
	box-sizing: border-box;
}

.privacy-policy-section {
	width: 100%;

	display: flex;
	flex-direction: column;
	row-gap: 8px;

	text-align: left;
}

.privacy-policy-section h1 {
	font-weight: 800;
	font-size: 2em;
	margin-bottom: 0.5em;
	text-align: center;
	word-break: break-word;
}

.privacy-policy-section h2 {
	font-weight: 800;
	font-size: 1.5em;
	margin-bottom: 0.3em;
	word-break: break-word;
}

.privacy-policy-container p {
	font-weight: 600;
	line-height: 1.6;
	word-break: break-word;
}

.privacy-policy-container a {
	color: #facc15;
	text-decoration: none;
}

.privacy-policy-container a:hover {
	text-decoration: underline;
}

@media (max-width: 600px) {
	.privacy-policy-container {
		padding: 10px;
		margin-top: 15px;
		margin-bottom: 15px;
		row-gap: 10px;
	}

	.privacy-policy-section h1 {
		font-size: 1.5em;
	}

	.privacy-policy-section h2 {
		font-size: 1.2em;
	}

	.privacy-policy-container p {
		font-size: 0.9em;
	}
}
