.tsk-policy-page {
	font-family: "Montserrat", sans-serif;
	color: #1f2937;
	line-height: 1.65;
	margin: 0 auto 36px;
}

.tsk-policy-page h1 {
	margin: 0 0 14px;
	font-size: 30px;
	line-height: 1.25;
	color: #111827;
	font-weight: 700;
}

.tsk-policy-meta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	font-weight: 600;
	color: #4b5563;
	background: #f9fafb;
	border: 1px solid #e5e7eb;
	border-radius: 999px;
	padding: 6px 12px;
	margin-bottom: 20px;
}

.tsk-policy-page section {
	background: #ffffff;
	border: 1px solid rgba(15, 23, 42, 0.08);
	border-radius: 12px;
	box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
	padding: 16px 18px;
	margin-bottom: 12px;
}

.tsk-policy-page h2 {
	margin: 0 0 10px;
	font-size: 18px;
	line-height: 1.35;
	color: #111827;
	font-weight: 700;
}

.tsk-policy-page p {
	margin: 0 0 8px;
	font-size: 14px;
}

.tsk-policy-page p:last-child {
	margin-bottom: 0;
}

.tsk-policy-page ul {
	margin: 0;
	padding: 0 0 0 18px;
}

.tsk-policy-page li {
	margin-bottom: 6px;
	font-size: 14px;
}

.tsk-policy-page li:last-child {
	margin-bottom: 0;
}

.tsk-policy-company {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 8px 14px;
	margin: 0;
}

.tsk-policy-company dt {
	font-size: 13px;
	font-weight: 600;
	color: #4b5563;
}

.tsk-policy-company dd {
	margin: 0;
	font-size: 14px;
	color: #111827;
}

.tsk-policy-page a {
	text-decoration: none;
	color: #333;
	padding: 1px 6px;
	border-radius: 6px;
	position: relative;
	display: inline-block;
	font-weight: 500;
	font-size: 13px;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.tsk-policy-page a::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 6px;
	right: 6px;
	height: 2px;
	background: linear-gradient(90deg, #ffcc33 0%, #ffd700 100%);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.tsk-policy-page a:hover {
	color: #1a1a1a;
	background: rgba(255, 204, 51, 0.1);
}

.tsk-policy-page a:hover::before {
	transform: scaleX(1);
}

@media (max-width: 768px) {
	.tsk-policy-page h1 {
		font-size: 24px;
	}

	.tsk-policy-page section {
		padding: 14px 12px;
	}

	.tsk-policy-company {
		grid-template-columns: 1fr;
		gap: 4px;
	}
}
