.policy-hero {
	padding: 20px 20px 80px 20px;
}
.policy-hero-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
	max-width: 1300px;
	margin: 0 auto;
	min-height: 500px;
}
.policy-hero-content {
	background: #48479E;
	padding: 60px 50px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
	overflow: hidden;
	border-radius: 20px 0 0 20px;
}
.policy-hero-content::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0px;
	transform: translateY(-50%);
	width: 220px;
	height: 422px;
	background: url('../img/drsoleneacademy_midform.svg') no-repeat center / contain;
	pointer-events: none;
	opacity: 0.3;
}
.policy-hero-content h1 {
	font-size: 50px;
	color: #fff;
	line-height: 55px;
	margin: 0 0 20px;
	position: relative;
	z-index: 1;
}
.policy-hero-desc {
	font-size: 18px;
	color: white;
	line-height: 22px;
	margin: 0 0 36px;
}
.btn-policy {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #DA829C;
	color: #fff;
	border: none;
	padding: 14px 32px;
	border-radius: 50px;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	cursor: pointer;
	transition: background 0.2s, transform 0.1s;
	width: fit-content;
	position: relative;
	z-index: 1;
}
.btn-policy:hover {
	background: #c96a87;
	transform: translateY(-1px);
	color: #fff;
}
.btn-policy span {
	font-size: 18px;
	line-height: 1;
}
.policy-hero-image {
	position: relative;
	overflow: visible;
	border-radius: 0 24px 24px 0;
}
.policy-hero-image img {
	width: 100%;
	height: calc(90% + 80px);
	object-fit: cover;
	display: block;
	border-radius: 0 20px 20px 20px;
}
.policy-content-section {
	display: grid;
	grid-template-columns: 340px 1fr;
	gap: 48px;
	max-width: 1300px;
	margin: 0px 20px 20px 20px;
	padding: 40px;
	align-items: start;
	background: #fff;
	border-radius: 20px;
}
.policy-sidebar-inner {
	position: sticky;
	top: 32px;
	background: #48479E;
	border-radius: 16px;
	padding: 28px 24px;
}
.policy-sidebar-inner h3 {
	font-size: 16px;
	font-weight: 800;
	color: #fff;
	margin: 0 0 20px;
	display: flex;
	align-items: center;
	gap: 10px;
}
.policy-sidebar-inner h3::before {
	content: '';
	display: inline-block;
	width: 24px;
	height: 24px;
	background: url('../img/drsoleneacademy_form.svg') no-repeat center / contain;
	flex-shrink: 0;
}
.policy-toc {
	display: flex;
	flex-direction: column;
	gap: 0;
}
.policy-toc a {
	display: block;
	font-size: 14px;
	font-weight: 600;
	color: #78C9E2;
	text-decoration: none;
	padding: 14px 0;
	transition: color 0.2s;
}
.policy-toc a:hover {
	color: #fff;
}
.policy-body {
	color: #333;
	line-height: 1.8;
}
.policy-body > p:first-child {
	font-size: 17px;
	font-weight: 700;
	color: #170833;
	line-height: 1.65;
	margin-bottom: 32px;
}
.policy-body h2 {
	font-size: clamp(24px, 2.8vw, 34px);
	font-weight: 800;
	color: #170833;
}
.policy-body p {
	font-size: 15px;
	color: #170833;
	line-height: 1.8;
	margin: 0 0 16px;
}
.policy-body a {
	color: #DA829C;
	text-decoration: underline;
	transition: color 0.2s;
}
.policy-body a:hover {
	color: #c96a87;
}
.policy-body ul, .policy-body ol {
	padding-left: 24px;
	margin: 0 0 16px;
}
.policy-body li {
	font-size: 15px;
	color: #444;
	line-height: 1.8;
	margin-bottom: 8px;
}

@media screen and (min-width: 1400px) {
	.policy-content-section{
		margin: 0 auto;
	}
}

@media screen and (max-width: 1024px) {
	.policy-hero {
		padding-bottom: 0;
	}
	.policy-hero-inner {
		grid-template-columns: 1fr;
		overflow: hidden;
		border-radius: 24px;
	}
	.policy-hero-content {
		border-radius: 0;
	}
	.policy-hero-image {
		min-height: 300px;
		overflow: hidden;
		border-radius: 0;
	}
	.policy-hero-image img {
		height: 300px;
		border-radius: 0;
	}
	.policy-content-section {
		grid-template-columns: 280px 1fr;
		gap: 32px;
		padding: 48px 24px 60px;
		margin: 20px;
	}
}

@media screen and (max-width: 768px) {
	.policy-hero-content {
		padding: 40px 24px;
	}
	.policy-content-section {
		grid-template-columns: 1fr;
		padding: 20px;
	}
	.policy-sidebar-inner {
		position: static;
	}
	.policy-body h2 {
		margin-top: 40px;
	}}

@media screen and (max-width: 550px) {
	.policy-sidebar {
		display: none;
	}
	.policy-body h2 {
		margin: 20px 0px 20px 0px;
		line-height: 30px;
	}
}