/* Common styles for all policy pages */
.policy {
	padding: 60px 0;
	background-color: var(--background);
}

.policy-title {
	text-align: center;
	font-size: 36px;
	margin-bottom: 40px;
	color: var(--text);
	position: relative;
	padding-bottom: 15px;
}

.policy-title::after {
	content: "";
	position: absolute;
	width: 80px;
	height: 3px;
	background-color: var(--primary);
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
}

.policy-content {
	max-width: 800px;
	margin: 0 auto;
	background-color: white;
	padding: 40px;
	border-radius: 10px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.policy-updated {
	text-align: right;
	font-style: italic;
	margin-bottom: 30px;
	opacity: 0.7;
}

.policy-section {
	margin-bottom: 30px;
}

.policy-section h2 {
	color: var(--text);
	font-size: 22px;
	margin-bottom: 15px;
	border-bottom: 1px solid #eee;
	padding-bottom: 10px;
}

.policy-section h3 {
	color: var(--text);
	font-size: 18px;
	margin-top: 20px;
	margin-bottom: 10px;
}

.policy-section p,
.policy-section ul {
	margin-bottom: 15px;
	line-height: 1.7;
}

.policy-section ul {
	padding-left: 20px;
}

.policy-section ul li {
	margin-bottom: 8px;
}

.policy-section a {
	color: var(--primary);
	text-decoration: none;
	transition: color 0.3s ease;
}

.policy-section a:hover {
	text-decoration: underline;
	color: var(--button);
}

/* Responsive Styles */
@media (max-width: 768px) {
	.policy-content {
		padding: 30px 20px;
		margin: 0 15px;
	}

	.policy-title {
		font-size: 28px;
	}

	.policy-section h2 {
		font-size: 20px;
	}

	.policy-section h3 {
		font-size: 16px;
	}
}
