.pg-page .breadcrumb-row {
	display: none;
}
.pg-wrap {
	--pg-navy: #1b3d6f;
	--pg-blue: #0069aa;
	--pg-text: #3d4a5c;
	--pg-muted: #6b7a90;
	--pg-bg: #f3f7fb;
	--pg-line: #e3e9f0;
	color: var(--pg-text);
	padding-bottom: 60px;
}
.pg-wrap .container {
	margin-top: 0;
}
.pg-wrap a,
.pg-wrap a:hover {
	text-decoration: none;
	transition: color .2s ease;
}

.pg-hero {
	position: relative;
	overflow: hidden;
	background: var(--pg-bg);
}
.pg-hero-inner {
	position: static;
	display: flex;
	min-height: 340px;
}
.pg-hero-text {
	position: relative;
	z-index: 2;
	width: 56%;
	padding: 34px 40px 40px 0;
}
.pg-hero-img {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 52%;
	background-size: cover;
	background-position: center;
}
.pg-hero-img::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: linear-gradient(90deg, var(--pg-bg) 0%, rgba(243, 247, 251, .85) 18%, rgba(243, 247, 251, 0) 52%);
}
.pg-hero h1 {
	margin: 18px 0 14px;
	font-size: 50px;
	line-height: 1.1;
	font-weight: bold;
	color: var(--pg-navy);
}
.pg-hero-sub {
	max-width: 480px;
	margin: 0;
	font-size: 20px;
	line-height: 1.5;
	font-weight: 300;
	color: #4b5b73;
}
.pg-hero-landing .pg-hero-inner {
	min-height: 380px;
}

.pg-crumbs ol {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: 14px;
	color: var(--pg-muted);
}
.pg-crumbs li {
	display: flex;
	align-items: center;
}
.pg-crumbs li + li::before {
	content: '';
	display: inline-block;
	width: 6px;
	height: 6px;
	margin: 0 10px;
	border-top: 1.5px solid #9aa8bb;
	border-right: 1.5px solid #9aa8bb;
	transform: rotate(45deg);
}
.pg-crumbs a {
	color: var(--pg-muted);
}
.pg-crumbs a:hover {
	color: var(--pg-blue);
}
.pg-crumbs span {
	color: var(--pg-navy);
	font-weight: bold;
}

.pg-quick {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 0;
	margin-top: 30px;
}
.pg-quick a {
	display: inline-flex;
	align-items: center;
	padding: 6px 20px 6px 0;
	font-size: 16px;
	white-space: nowrap;
	font-weight: bold;
	color: var(--pg-navy);
}
.pg-quick a + a {
	padding-left: 20px;
	border-left: 1px solid #c9d5e3;
}
.pg-quick a::before {
	content: '';
	width: 30px;
	height: 30px;
	margin-right: 12px;
	background-repeat: no-repeat;
	background-size: contain;
}
.pg-quick a::after {
	content: '';
	width: 8px;
	height: 8px;
	margin-left: 12px;
	border-top: 2px solid var(--pg-blue);
	border-right: 2px solid var(--pg-blue);
	transform: rotate(45deg);
}
.pg-quick a:hover {
	color: var(--pg-blue);
}
.pg-quick-hours::before {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230069aa' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M12 7v5l3 2'/%3E%3C/svg%3E");
}
.pg-quick-phone::before {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230069aa' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 4h4l2 5-2.5 1.5a11 11 0 0 0 5 5L15 13l5 2v4a2 2 0 0 1-2 2A16 16 0 0 1 3 6a2 2 0 0 1 2-2'/%3E%3C/svg%3E");
}

.pg-intro {
	max-width: 900px;
	margin: 40px auto 0;
	font-size: 17px;
	line-height: 1.7;
}

.pg-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 26px;
	margin-top: 36px;
}
.pg-card {
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid var(--pg-line);
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 2px 10px rgba(27, 61, 111, .06);
	color: var(--pg-text);
	transition: transform .25s ease, box-shadow .25s ease;
}
.pg-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 28px rgba(27, 61, 111, .14);
	color: var(--pg-text);
}
.pg-card-img {
	margin: 0;
	aspect-ratio: 8 / 3;
	background: var(--pg-bg);
	overflow: hidden;
}
.pg-card-img img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .4s ease;
}
.pg-card:hover .pg-card-img img {
	transform: scale(1.04);
}
.pg-card-body {
	position: relative;
	flex: 1;
	padding: 22px 24px 54px;
}
.pg-card h3 {
	display: flex;
	align-items: flex-start;
	margin: 0 0 12px;
	font-size: 22px;
	line-height: 1.25;
	font-weight: bold;
	color: var(--pg-navy);
}
.pg-num {
	flex: 0 0 30px;
	width: 30px;
	height: 30px;
	margin: -2px 12px 0 0;
	border-radius: 50%;
	background: var(--pg-navy);
	color: #fff;
	font-size: 14px;
	line-height: 30px;
	text-align: center;
}
.pg-card p {
	margin: 0 0 0 42px;
	font-size: 15px;
	line-height: 1.6;
	color: var(--pg-text);
}
.pg-card-arrow {
	position: absolute;
	left: 66px;
	bottom: 20px;
	width: 26px;
	height: 14px;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 26 14' fill='none' stroke='%230069aa' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M1 7h23M18 1l6 6-6 6'/%3E%3C/svg%3E") no-repeat center / contain;
	transition: transform .25s ease;
}
.pg-card:hover .pg-card-arrow {
	transform: translateX(6px);
}

.pg-layout {
	display: flex;
	align-items: flex-start;
	gap: 44px;
	margin-top: 34px;
}
.pg-aside {
	flex: 0 0 300px;
	width: 300px;
	position: sticky;
	top: 24px;
}
.pg-main {
	flex: 1;
	min-width: 0;
}

.pg-side-toggle {
	display: none;
}
.pg-side {
	background: #fff;
	border: 1px solid var(--pg-line);
	border-radius: 12px;
	box-shadow: 0 2px 10px rgba(27, 61, 111, .06);
	overflow: hidden;
}
.pg-side ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.pg-side-list > li + li {
	border-top: 1px solid #eef2f6;
}
.pg-side-row {
	display: flex;
	align-items: stretch;
}
.pg-side-row a {
	flex: 1;
	padding: 15px 18px;
	font-size: 16px;
	line-height: 1.35;
	color: var(--pg-navy);
}
.pg-side-row a:hover {
	background: #f6f9fc;
	color: var(--pg-blue);
}
.pg-side-list > li.is-active > .pg-side-row a {
	background: #e9f1fa;
	font-weight: bold;
}
.pg-toggle {
	flex: 0 0 44px;
	padding: 0;
	border: 0;
	border-left: 1px solid #eef2f6;
	background: transparent;
	cursor: pointer;
	position: relative;
}
.pg-toggle::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 9px;
	height: 9px;
	margin: -7px 0 0 -5px;
	border-right: 2px solid var(--pg-blue);
	border-bottom: 2px solid var(--pg-blue);
	transform: rotate(45deg);
	transition: transform .25s ease, margin .25s ease;
}
.pg-toggle:hover {
	background: #f6f9fc;
}
li.is-open > .pg-side-row .pg-toggle::before {
	transform: rotate(225deg);
	margin-top: -2px;
}
.pg-side-sub {
	display: none;
	background: #fafbfd;
	border-top: 1px solid #eef2f6;
	padding: 6px 0;
}
li.is-open > .pg-side-sub {
	display: block;
}
.pg-side-sub a {
	display: block;
	padding: 10px 18px 10px 32px;
	font-size: 15px;
	line-height: 1.35;
	color: var(--pg-text);
}
.pg-side-sub a:hover {
	color: var(--pg-blue);
	background: #f1f5fa;
}
.pg-side-sub li.is-active a {
	color: var(--pg-navy);
	font-weight: bold;
	background: #e9f1fa;
}
.pg-side-back {
	display: block;
	padding: 14px 18px;
	border-top: 1px solid #eef2f6;
	font-size: 14px;
	color: var(--pg-muted);
}
.pg-side-back::before {
	content: '';
	display: inline-block;
	width: 7px;
	height: 7px;
	margin-right: 10px;
	border-left: 1.5px solid currentColor;
	border-bottom: 1.5px solid currentColor;
	transform: rotate(45deg);
	vertical-align: middle;
}
.pg-side-back:hover {
	color: var(--pg-blue);
}

.pg-content {
	max-width: 760px;
}
.pg-title {
	margin: 4px 0 22px;
	font-size: 36px;
	line-height: 1.15;
	font-weight: bold;
	color: var(--pg-navy);
}
.pg-body {
	font-size: 16px;
	line-height: 1.7;
}
.pg-body > :first-child {
	margin-top: 0;
}
.pg-body p {
	margin: 0 0 16px;
}
.pg-body h3 {
	margin: 34px 0 12px;
	font-size: 21px;
	line-height: 1.3;
	font-weight: bold;
	color: var(--pg-blue);
}
.pg-body h4 {
	margin: 26px 0 10px;
	font-size: 17px;
	line-height: 1.35;
	font-weight: bold;
	color: var(--pg-navy);
}
.pg-body a {
	color: var(--pg-blue);
	text-decoration: underline;
	text-decoration-color: rgba(0, 105, 170, .35);
	text-underline-offset: 2px;
}
.pg-body a:hover {
	color: var(--pg-navy);
	text-decoration: underline;
}
.pg-body strong {
	color: var(--pg-navy);
}
.pg-body ul,
.pg-body ol {
	margin: 0 0 20px;
	padding: 0;
}
.pg-body ul.pg-check li {
	position: relative;
	list-style: none;
	margin: 0 0 10px;
	padding-left: 38px;
}
.pg-body ul.pg-check li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 1px;
	width: 24px;
	height: 24px;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230069aa' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='m8 12.5 2.5 2.5L16 9.5'/%3E%3C/svg%3E") no-repeat center / contain;
}
.pg-body ol.pg-steps {
	counter-reset: pgstep;
}
.pg-body ol.pg-steps > li {
	position: relative;
	list-style: none;
	margin: 0 0 18px;
	padding-left: 50px;
	counter-increment: pgstep;
}
.pg-body ol.pg-steps > li::before {
	content: counter(pgstep);
	position: absolute;
	left: 0;
	top: 0;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: var(--pg-navy);
	color: #fff;
	font-size: 15px;
	font-weight: bold;
	line-height: 34px;
	text-align: center;
}
.pg-body .pg-step-title {
	margin: 5px 0 6px;
	font-weight: bold;
	color: var(--pg-navy);
}
.pg-body ol.pg-steps > li > p {
	margin-bottom: 8px;
}
.pg-body ul.pg-sub {
	margin: 4px 0 6px;
}
.pg-body ul.pg-sub li {
	position: relative;
	list-style: none;
	margin: 0 0 6px;
	padding-left: 20px;
}
.pg-body ul.pg-sub li::before {
	content: '';
	position: absolute;
	left: 3px;
	top: 11px;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #9cc3e2;
}
.pg-note {
	position: relative;
	margin: 22px 0;
	padding: 16px 20px 16px 62px;
	background: #eef4fb;
	border: 1px solid #d3e2f3;
	border-radius: 10px;
}
.pg-note::before {
	content: '';
	position: absolute;
	left: 18px;
	top: 16px;
	width: 28px;
	height: 28px;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231b3d6f' stroke-width='1.6' stroke-linecap='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M12 11v6'/%3E%3Ccircle cx='12' cy='7.5' r='.6' fill='%231b3d6f'/%3E%3C/svg%3E") no-repeat center / contain;
}
.pg-note p {
	margin: 0;
	color: var(--pg-navy);
}
.pg-signature {
	margin-top: 26px;
	padding-top: 18px;
	border-top: 1px solid var(--pg-line);
	color: var(--pg-navy);
}
.pg-table-wrap {
	margin: 0 0 20px;
	overflow-x: auto;
}
.pg-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 16px;
}
.pg-table th,
.pg-table td {
	padding: 12px 16px;
	border: 1px solid var(--pg-line);
	text-align: left;
	vertical-align: top;
}
.pg-table thead th {
	background: #e9f1fa;
	color: var(--pg-navy);
}
.pg-table tbody th {
	font-weight: bold;
	color: var(--pg-navy);
	background: #f8fafc;
}
.pg-table a {
	text-decoration: none;
	font-weight: bold;
}

.pg-index {
	margin-top: 10px;
}
.pg-index-title {
	margin: 0 0 14px;
	font-size: 18px;
	font-weight: bold;
	color: var(--pg-blue);
}
.pg-index-list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
}
.pg-index-list a {
	display: block;
	padding: 14px 18px;
	background: #fff;
	border: 1px solid var(--pg-line);
	border-radius: 10px;
	font-size: 16px;
	font-weight: bold;
	color: var(--pg-navy);
	transition: border-color .2s ease, box-shadow .2s ease, color .2s ease;
}
.pg-index-list a:hover {
	color: var(--pg-blue);
	border-color: #bcd3ea;
	box-shadow: 0 6px 16px rgba(27, 61, 111, .1);
}

.pg-pager {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	max-width: 760px;
	margin-top: 44px;
	padding-top: 24px;
	border-top: 1px solid var(--pg-line);
}
.pg-pager a {
	display: flex;
	flex-direction: column;
	max-width: 48%;
	color: var(--pg-navy);
}
.pg-pager a small {
	font-size: 13px;
	color: var(--pg-muted);
	margin-bottom: 4px;
}
.pg-pager a span {
	font-size: 16px;
	font-weight: bold;
}
.pg-pager-next {
	margin-left: auto;
	text-align: right;
}
.pg-pager-next span::after {
	content: ' →';
}
.pg-pager-prev span::before {
	content: '← ';
}
.pg-pager a:hover {
	color: var(--pg-blue);
}

@media (max-width: 1199px) {
	.pg-hero h1 {
		font-size: 42px;
	}
	.pg-aside {
		flex-basis: 260px;
		width: 260px;
	}
	.pg-layout {
		gap: 30px;
	}
}
@media (max-width: 991px) {
	.pg-hero-inner {
		flex-direction: column;
		min-height: 0;
	}
	.pg-hero-text {
		width: 100%;
		padding: 22px 0 30px;
		order: 2;
	}
	.pg-hero-img {
		position: relative;
		width: 100vw;
		height: 220px;
		margin-left: calc(50% - 50vw);
		order: 1;
	}
	.pg-hero-img::before {
		background: linear-gradient(180deg, rgba(243, 247, 251, 0) 55%, var(--pg-bg) 100%);
	}
	.pg-hero-landing .pg-hero-inner {
		min-height: 0;
	}
	.pg-hero h1 {
		font-size: 36px;
	}
	.pg-hero-sub {
		font-size: 18px;
	}
	.pg-cards {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}
	.pg-layout {
		flex-direction: column;
		gap: 24px;
	}
	.pg-aside {
		position: static;
		width: 100%;
		flex-basis: auto;
	}
	.pg-side-toggle {
		display: flex;
		align-items: center;
		justify-content: space-between;
		width: 100%;
		padding: 14px 18px;
		border: 1px solid var(--pg-line);
		border-radius: 12px;
		background: #fff;
		font-size: 16px;
		font-weight: bold;
		color: var(--pg-navy);
		cursor: pointer;
	}
	.pg-side-toggle::after {
		content: '';
		width: 9px;
		height: 9px;
		border-right: 2px solid var(--pg-blue);
		border-bottom: 2px solid var(--pg-blue);
		transform: rotate(45deg);
		margin-top: -4px;
	}
	.pg-side-toggle[aria-expanded="true"]::after {
		transform: rotate(225deg);
		margin-top: 4px;
	}
	.pg-side {
		display: none;
		margin-top: 10px;
	}
	.pg-side.is-open {
		display: block;
	}
	.pg-title {
		font-size: 30px;
	}
}
@media (max-width: 600px) {
	.pg-hero h1 {
		font-size: 30px;
	}
	.pg-quick a {
		width: 100%;
		padding-left: 0;
		border-left: 0;
	}
	.pg-quick a + a {
		padding-left: 0;
		border-left: 0;
	}
	.pg-cards {
		grid-template-columns: 1fr;
	}
	.pg-index-list {
		grid-template-columns: 1fr;
	}
	.pg-title {
		font-size: 26px;
	}
	.pg-pager {
		flex-direction: column;
	}
	.pg-pager a {
		max-width: 100%;
	}
	.pg-pager-next {
		margin-left: 0;
		text-align: left;
	}
}
