:root {
	--page-bg: #f4f7fc;
	--card-bg: #ffffff;
	--text-main: #1f1f29;
	--text-muted: #667180;
	--brand-blue: #1f3e72;
	--brand-red: #ba2d30;
	--brand-cyan: #2ed4f2;
	--soft-border: #dfe6f3;
}

.subpage {
	background: var(--page-bg);
}

.subpage .menu a.active {
	color: var(--brand-blue);
}

.page-main {
	padding: 32px 0 48px;
}

.clinics-page .page-main {
	padding: 0;
}

.page-banner {
	position: relative;
	overflow: hidden;
	padding: 90px 0;
	background: url("./images/Hero-Section/header-bg.png") center center / cover no-repeat;
	border-bottom: 1px solid #e1e8f8;
	margin-bottom: 32px;
}

.page-banner::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(100deg, rgba(31, 62, 114, 0.92), rgba(186, 45, 48, 0.3));
	pointer-events: none;
}

.page-banner .container {
	position: relative;
	z-index: 1;
}

.page-banner h1 {
	margin: 0 0 8px;
	font-size: clamp(30px, 4.2vw, 46px);
	line-height: 1.1;
	color: #ffffff;
}

.page-banner p {
	margin: 0;
	max-width: 760px;
	color: rgba(234, 242, 255, 0.95);
	font-size: 16px;
	line-height: 1.65;
}

.panel {
	background: var(--card-bg);
	border: 1px solid #e6ebf6;
	box-shadow: 0 14px 36px rgba(22, 41, 79, 0.08);
	border-radius: 12px;
}

.section-gap {
	margin-top: 28px;
}

.section-title {
	margin: 0 0 18px;
	font-size: clamp(24px, 3vw, 34px);
	line-height: 1.2;
	color: var(--text-main);
}

.section-copy {
	margin: 0;
	color: var(--text-muted);
	font-size: 16px;
	line-height: 1.75;
}

.clinic-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
	max-width: 1120px;
	margin: 0 auto;
	margin-bottom : 3rem;

}

.clinic-card {
	padding: 0;
	display: grid;
	gap: 14px;
	align-content: start;
	border: 0;
	box-shadow: none;
	background: transparent;
}

.clinic-card:hover {
	transform: none;
	box-shadow: none;
}

.clinic-card h2 {
	margin: 0;
	font-size: 30px;
	line-height: 1.2;
	color: var(--brand-blue);
}

.clinic-layout {
	display: grid;
	grid-template-columns: 1.05fr 1fr;
	gap: 16px;
	align-items: stretch;
}

.clinic-contact {
	padding: 34px 36px;
	border-radius: 16px;
	background: #dfe4ee;
	border: 0;
	box-shadow: none;
	display: grid;
	align-content: start;
	gap: 18px;
}

.clinic-contact h3 {
	margin: 0;
	font-size: 42px;
	line-height: 1.1;
	color: var(--brand-blue);
}

.clinic-info {
	margin: 0;
	color: #3f4857;
	font-size: 17px;
	line-height: 1.45;
	display: flex;
	gap: 12px;
	align-items: flex-start;
}

.clinic-info i {
	margin-top: 3px;
	color: #454545;
	min-width: 22px;
	font-size: 17px;
}

.clinic-info span {
	display: block;
}

.card-actions {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	margin-top: 6px;
}

.card-actions a {
	flex: 1 1 160px;
}

.btn-primary,
.btn-secondary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px 16px;
	border-radius: 6px;
	font-size: 14px;
	font-weight: 600;
}

.btn-primary {
	background: linear-gradient(90deg, var(--brand-blue), var(--brand-red));
	color: #fff;
}

.btn-secondary {
	border: 1px solid #b8c8e8;
	color: #385080;
	background: #f7faff;
}

.contact-hero-section {
	padding: 100px 0;
	background: linear-gradient(135deg, rgba(31, 62, 114, 0.03) 0%, rgba(186, 45, 48, 0.03) 100%);
	text-align: center;
}

.contact-header {
	max-width: 800px;
	margin: 0 auto 60px;
}

.contact-header h2 {
	font-size: 48px;
	font-weight: 800;
	color: var(--brand-blue);
	margin-bottom: 20px;
	letter-spacing: -1px;
}

.contact-header p {
	font-size: 18px;
	color: var(--text-muted);
	line-height: 1.6;
}

.contact-cards-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.contact-card {
	background: #fff;
	padding: 60px 40px;
	border-radius: 24px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
	display: flex;
	flex-direction: column;
	align-items: center;
	transition: transform 0.3s ease;
}

.contact-card:hover {
	transform: translateY(-10px);
}

.card-icon {
	width: 84px;
	height: 84px;
	background: rgba(31, 62, 114, 0.06);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 30px;
	font-size: 32px;
	color: var(--brand-blue);
	transition: all 0.3s ease;
}

.contact-card:hover .card-icon {
	background: var(--brand-blue);
	color: #fff;
	transform: scale(1.05);
}

.contact-card h3 {
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 20px;
	color: var(--brand-blue);
}

.card-instr {
	color: var(--text-muted);
	font-size: 15px;
	margin-bottom: 8px;
}

.card-detail {
	font-size: 17px;
	font-weight: 700;
	color: var(--text-main);
	line-height: 1.4;
	text-decoration: none;
}

.card-detail.highlight {
	color: var(--brand-blue);
	transition: color 0.3s ease;
}

.card-detail.highlight:hover {
	color: var(--brand-red);
}

.full-map-section {
	padding-bottom: 80px;
}

.full-map-iframe {
	width: 100%;
	height: 500px;
	border: 0;
	border-radius: 24px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991px) {
	.contact-cards-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.contact-header h2 {
		font-size: 36px;
	}

	.contact-card {
		padding: 40px 20px;
	}
}

.mini-map {
	width: 100%;
	height: 100%;
	min-height: 330px;
	border: 0;
	border-radius: 16px;
}

.form-panel {
	padding: 24px;
}

.form-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.form-group {
	display: grid;
	gap: 8px;
}

.form-group label {
	font-size: 14px;
	font-weight: 600;
	color: #35425c;
}

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	border: 1px solid #ced8eb;
	border-radius: 8px;
	padding: 11px 12px;
	font: inherit;
	color: #1f1f29;
	background: #fff;
}

.form-group textarea {
	min-height: 130px;
	resize: vertical;
}

.span-2 {
	grid-column: 1 / -1;
}

.form-actions {
	margin-top: 6px;
}

@media (max-width: 1080px) {
	.clinic-layout {
		grid-template-columns: 1fr;
	}

	.mini-map {
		min-height: 250px;
	}

	.clinic-contact h3 {
		font-size: 34px;
	}

	.clinic-info {
		font-size: 16px;
	}
}

@media (max-width: 760px) {
	.page-main {
		padding: 24px 0 28px;
	}

	.clinics-page .page-main {
		padding: 0;
	}

	.page-banner {
		padding: 74px 0;
		margin-bottom: 24px;
	}

	.form-grid {
		grid-template-columns: 1fr;
	}

	.span-2 {
		grid-column: auto;
	}

	.clinic-card {
		gap: 10px;
	}

	.clinic-card h2 {
		font-size: 24px;
	}

	.clinic-contact {
		padding: 22px;
		gap: 14px;
	}

	.clinic-contact h3 {
		font-size: 28px;
	}

	.clinic-info {
		font-size: 15px;
	}

	.mini-map {
		min-height: 210px;
	}

	.card-actions a {
		flex-basis: 100%;
	}
}

/* About doctor page converted from utility classes to plain CSS */
.about-doctor-body {
	background: #f8f9fa;
}

.about-page {
	padding-top: 24px;
	padding-bottom: 0;
	overflow: hidden;
}

.about-wrap {
	width: min(1120px, calc(100% - 48px));
	margin: 0 auto;
}

.about-hero {
	position: relative;
	padding: 48px 0 96px;
}

.about-hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	
	align-items: center;
}


.about-hero-photo-frame img {
    height: 475px;
	width:400px ;
	object-fit: cover;
}

.about-hero-content h1,
.about-page h2,
.about-page h3 {
	font-family: "Manrope", "Poppins", sans-serif;
}

.about-hero-content h1 {
	margin: 0;
	color: var(--brand-blue);
	font-size: 3rem;            /* text-5xl */
  font-weight: 800;           /* font-extrabold */
        /* text-primary */
  margin-bottom: 1.5rem;      /* mb-6 */
  letter-spacing: -0.025em;   /* tracking-tight */
  line-height: 1; 
}

.about-chip-row {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin: 26px 0;
}

.about-chip-row span {
	padding: 8px 16px;
	border-radius: 999px;
	background: #d6e3ff;
	color: #001b3d;
	font-size: 14px;
	font-weight: 600;
}

.about-hero-content p {
	margin: 0;
	font-size: 21px;
	line-height: 1.75;
	color: #424752;
	max-width: 640px;
}

.about-hero-shape {
	position: absolute;
	top: 0;
	right: 0;
	width: 34%;
	height: 100%;
	border-radius: 100px 0 0 100px;
	background: rgba(0, 71, 141, 0.05);
	z-index: 1;
}

.about-story {
	padding: 96px 0;
}

.about-story-grid {
	display: grid;
	grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
	gap: 64px;
}

.about-page h2 {
	margin: 0;
	font-size: 30px;
	font-weight: 800;
	letter-spacing: -0.02em;
	color: var(--brand-blue);
}

.about-copy {
	display: grid;
	gap: 24px;
	margin-top: 28px;
	font-size: 18px;
	line-height: 1.75;
	color: #424752;
}

.about-copy p {
	margin: 0;
}

.about-copy blockquote {
	margin: 0;
	font-size:1rem;
	padding: 8px 0 8px 24px;
	border-left: 4px solid var(--brand-red);
	border-radius: 0 8px 8px 0;
	background: rgba(187, 0, 39, 0.05);
	color: #191c1d;
	font-style: italic;
	font-weight: 400;
}

.about-education-card {
	background: #fff;
	padding: 40px;
	border: 1px solid rgba(114, 119, 131, 0.2);
	border-radius: 12px;
	box-shadow: 0 6px 20px rgba(29, 44, 75, 0.08);
}

.about-education-card h2 {
	font-size: 1.5rem;
	margin-bottom: 36px;
}

.about-timeline {
	position: relative;
	display: grid;
	gap: 34px;
	padding-left: 38px;
}

.about-timeline::before {
	content: "";
	position: absolute;
	left: 7px;
	top: 8px;
	bottom: 8px;
	width: 2px;
	background: rgba(114, 119, 131, 0.4);
}

.about-timeline article {
	position: relative;
}

.about-timeline article::before {
	content: "";
	position: absolute;
	left: -38px;
	top: 6px;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: var(--brand-blue);
	border: 4px solid var(--brand-red);
}

.about-timeline span {
	display: block;
	font-size: 14px;
	font-weight: 700;
	color: var(--brand-red);
	margin-bottom: 6px;
}

.about-timeline h3 {
	margin: 0;
	font-size: 20px;
	font-weight: 700;
	color: #191c1d;
}

.about-timeline p {
	margin: 8px 0 0;
	font-size: 14px;
	line-height: 1.75;
	color: #424752;
}

.about-specializations {
	padding: 96px 0;
}

.about-section-head {
	text-align: center;
	margin-bottom: 60px;
}

.about-section-head p {
	margin: 12px auto 0;
	max-width: 760px;
	font-size: 18px;
	line-height: 1.65;
	color: #424752;
}

.about-spec-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 32px;
}

.about-spec-card {
	background: #fff;
	padding: 32px;
	border-radius: 12px;
	border-left: 4px solid #bb0027;
	box-shadow: 0 4px 16px rgba(24, 36, 63, 0.08);
	transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.about-spec-card:hover {
	box-shadow: 0 16px 32px rgba(24, 36, 63, 0.14);
	transform: translateY(-4px);
}

.about-spec-icon {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: #d6e3ff;
	display: grid;
	place-items: center;
	margin-bottom: 24px;
	transition: transform 0.2s ease;
}

.about-spec-card:hover .about-spec-icon {
	transform: scale(1.08);
}

.about-spec-icon .material-symbols-outlined {
	font-size: 32px;
	color: #00478d;
}

.about-spec-card h3 {
	margin: 0;
	font-size: 30px;
	line-height: 1.2;
	font-weight: 700;
	color: #191c1d;
}

.about-spec-card p {
	margin: 16px 0 0;
	font-size: 17px;
	line-height: 1.7;
	color: #424752;
}


.about-cta {
	padding: 0 0 96px;
}

.about-cta-panel {
	position: relative;
	overflow: hidden;
	padding: 56px 48px;
	border-radius: 24px;
	text-align: center;
	background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-red) 100%);
	box-shadow: 0 18px 30px rgba(17, 31, 63, 0.26);
}

.about-cta-panel::before,
.about-cta-panel::after {
	content: "";
	position: absolute;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
	pointer-events: none;
}

.about-cta-panel::before {
	top: -120px;
	right: -120px;
	width: 260px;
	height: 260px;
}

.about-cta-panel::after {
	left: -190px;
	bottom: -210px;
	width: 420px;
	height: 420px;
}

.about-cta-panel h2 {
	position: relative;
	z-index: 1;
	margin: 0;
	font-size: 2.25rem;
	font-weight: 800;
	color: #fff;
	letter-spacing: -0.02em;
}

.about-cta-panel p {
	position: relative;
	z-index: 1;
	margin: 18px auto 0;
	max-width: 900px;
	font-size: 21px;
	line-height: 1.65;
	color: #a9c7ff;
}

.about-cta-actions {
	position: relative;
	z-index: 1;
	margin-top: 40px;
	display: flex;
	justify-content: center;
	gap: 16px;
	flex-wrap: wrap;
}

.about-cta-primary,
.about-cta-secondary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 28px;
	border-radius: 12px;
	font-size: 18px;
	font-weight: 700;
	transition: background-color 0.2s ease, transform 0.2s ease;
}

.about-cta-primary {
	background: #fff;
	color: var(--brand-blue);
}

.about-cta-secondary {
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: #fff;
}

.about-cta-primary:hover,
.about-cta-secondary:hover {
	transform: translateY(-1px);
}

@media (max-width: 1080px) {
	.about-wrap {
		width: min(1280px, calc(100% - 42px));
	}

	.about-hero-grid,
	.about-story-grid,
	.about-spec-grid {
		grid-template-columns: 1fr;
	}

	
}

@media (max-width: 760px) {
	.about-wrap {
		width: min(1280px, calc(100% - 28px));
	}

	.about-page {
		padding-top: 8px;
	}

	.about-hero,
	.about-story,
	.about-specializations {
		padding-top: 52px;
		padding-bottom: 52px;
	}


	.about-hero-content h1 {
		font-size: clamp(36px, 10vw, 58px);
	}

	.about-hero-content p,
	.about-section-head p,
	.about-cta-panel p,
	.about-copy {
		font-size: 17px;
	}

	.about-page h2 {
		font-size: clamp(30px, 9vw, 40px);
	}

	.about-education-card {
		padding: 26px;
	}

	.about-spec-card {
		padding: 24px;
	}

	.about-cta {
		padding-bottom: 54px;
	}

	.about-cta-panel {
		padding: 42px 20px;
	}

	.about-cta-primary,
	.about-cta-secondary {
		width: 100%;
		font-size: 16px;
	}
}

/* Contact page converted from utility classes to plain CSS */
.contact-page-body {
	background: #f8f9fa;
	font-family: Inter, sans-serif;
	color: #191c1d;
}

.contact-page-main {
	padding: 128px 0 0;
}

.subpage .clinic-footer {
	margin-top: 0;
}

.contact-page-container {
	max-width: 1152px;
	margin: 0 auto;
	margin-bottom : 50px;
}

.contact-status-banner {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 48px;
	padding: 16px;
	background: rgba(214, 227, 255, 0.45);
	border-left: 4px solid #00478d;
	border-radius: 12px;
}

.contact-status-icon {
	color: #00478d;
	font-variation-settings: "FILL" 1;
}

.contact-status-title {
	margin: 0;
	font-family: Manrope, sans-serif;
	font-weight: 800;
	color: #00478d;
}

.contact-status-copy {
	margin: 4px 0 0;
	font-size: 14px;
	color: #424752;
}

.contact-layout-grid {
	display: grid;
	grid-template-columns: 5fr 7fr;
	gap: 48px;
	align-items: flex-start;
}

.contact-left-col {
	display: grid;
	gap: 24px;
}

.contact-pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 4px 12px;
	border-radius: 999px;
	background: #ffdad8;
	color: #92001d;
	font-family: Manrope, sans-serif;
	font-weight: 700;
	font-size: 11px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	width: fit-content;
}

.contact-pill-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #bb0027;
}

.contact-main-title {
	margin: 0;
	font-family: Manrope, sans-serif;
	font-size: 3.75rem;
	font-weight: 800;
	line-height: 0.98;
	color: #00478d;
	letter-spacing: -0.02em;
}

.contact-main-title span {
	color: #bb0027;
}

.contact-intro-copy {
	margin: 0;
	max-width: 520px;
	font-size: 18px;
	line-height: 1.6;
	color: #424752;
}

.contact-info-list {
	display: grid;
	gap: 16px;
	padding-top: 8px;
}

.contact-info-card {
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 24px;
	background: #ffffff;
	border-radius: 12px;
	transition: box-shadow 0.2s ease;
}

.contact-info-card:hover {
	box-shadow: 0 10px 24px rgba(19, 33, 66, 0.14);
}

.contact-info-card-highlight {
	border-left: 4px solid #bb0027;
}

.contact-info-icon {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	color: #fff;
}

.contact-info-icon-gradient {
	background: linear-gradient(135deg, #00478d 0%, #005eb8 100%);
}

.contact-info-icon-red {
	background: #bb0027;
}

.contact-info-icon-blue-light {
	background: #d6e3ff;
	color: #00478d;
}

.contact-info-label {
	margin: 0 0 4px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #bb0027;
}

.contact-info-value {
	margin: 0;
	font-family: Manrope, sans-serif;
	font-size: 1.125rem;
	line-height: 1.2;
	font-weight: 700;
	color: #191c1d;
}

.contact-info-value-tight {
	line-height: 1.2;
}

.contact-right-col {
	background: #f3f4f5;
	padding: 4px;
	border-radius: 16px;
	box-shadow: 0 16px 30px rgba(19, 33, 66, 0.18);
}

.contact-form-body {
	background: #ffffff;
	border-radius: 20px;
	padding: 32px;
}

.contact-form-grid {
	display: grid;
	gap: 24px;
}

.contact-field-grid {
	display: grid;
	gap: 24px;
}

.contact-field-grid.two-col {
	grid-template-columns: 1fr 1fr;
}

.contact-field {
	display: grid;
	gap: 8px;
}

.contact-field label {
	padding-left: 4px;
	font-size: 14px;
	font-weight: 700;
	color: #424752;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
	width: 100%;
	padding: 12px 16px;
	border: 0;
	border-radius: 12px;
	background: #e7e8e9;
	font: inherit;
	color: #191c1d;
	outline: none;
	transition: box-shadow 0.2s ease;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
	box-shadow: 0 0 0 2px #00478d;
}

.contact-field select {
	appearance: none;
}

.contact-field textarea {
	resize: none;
	min-height: 112px;
}

.contact-info-note-wrap {
	display: flex;
	align-items: flex-end;
}

.contact-info-note {
	width: 100%;
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px;
	border-radius: 12px;
	background: rgba(255, 218, 216, 0.6);
}

.contact-info-note .material-symbols-outlined {
	color: #bb0027;
	font-variation-settings: "FILL" 1;
}

.contact-info-note p {
	margin: 0;
	font-size: 12px;
	line-height: 1.35;
	color: #92001d;
}

.contact-actions {
	padding-top: 6px;
	text-align: center;
}

.contact-actions button {
	width: 100%;
	border: 0;
	padding: 16px;
	border-radius: 12px;
	background: linear-gradient(135deg, #00478d 0%, #005eb8 100%);
	color: #ffffff;
	font-family: Manrope, sans-serif;
	font-size: 20px;
	font-weight: 800;
	cursor: pointer;
	box-shadow: 0 10px 22px rgba(0, 94, 184, 0.3);
	transition: transform 0.12s ease;
}

.contact-actions button:active {
	transform: scale(0.985);
}

.contact-actions p {
	margin: 16px 0 0;
	font-size: 12px;
	color: #424752;
}

.contact-actions a {
	color: inherit;
	text-decoration: underline;
}

.contact-info-icon .material-symbols-outlined {
	font-size: 24px;
}

@media (max-width: 1100px) {
	.contact-layout-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 760px) {
	.contact-page-main {
		padding: 112px 0 0;
	}

	.contact-status-banner {
		margin-bottom: 30px;
	}

	.contact-main-title {
		font-size: clamp(36px, 12vw, 48px);
	}

	.contact-intro-copy {
		font-size: 16px;
	}

	.contact-info-value {
		font-size: 19px;
	}

	.contact-form-body {
		padding: 24px;
	}

	.contact-field-grid.two-col {
		grid-template-columns: 1fr;
		gap: 16px;
	}
}

/* Services pages */
.services-page-body,
.service-page-body {
	background: #f4f7fc;
}

.services-page-main,
.service-page-main {
	padding-bottom: 0;
}

.services-landing-wrap {
	padding: 18px 0 54px;
}

.services-intro {
	padding: 30px;
	border-radius: 16px;
	border: 1px solid #dce6f6;
	background: linear-gradient(130deg, #ffffff, #f3f8ff);
	box-shadow: 0 10px 24px rgba(17, 34, 71, 0.08);
	margin-bottom: 24px;
}

.services-intro h2 {
	margin: 0 0 10px;
	font-family: "Manrope", "Poppins", sans-serif;
	font-size: clamp(28px, 4vw, 42px);
	font-weight: 800;
	color: #00478d;
	line-height: 1.1;
}

.services-intro p {
	margin: 0;
	max-width: 800px;
	font-size: 16px;
	line-height: 1.7;
	color: #3e4a62;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
}

.service-teaser-card {
	display: grid;
	gap: 10px;
	padding: 22px;
	border-radius: 14px;
	border: 1px solid #dce6f6;
	background: #ffffff;
	box-shadow: 0 8px 20px rgba(17, 34, 71, 0.07);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-teaser-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 14px 26px rgba(17, 34, 71, 0.12);
}

.service-teaser-card h3 {
	margin: 0;
	font-size: 24px;
	font-family: "Manrope", "Poppins", sans-serif;
	line-height: 1.2;
	color: #162a4d;
}

.service-teaser-card p {
	margin: 0;
	font-size: 15px;
	line-height: 1.65;
	color: #4e5a72;
}

.service-teaser-link {
	font-size: 14px;
	font-weight: 700;
	color: #00478d;
	letter-spacing: 0.3px;
	text-transform: uppercase;
}

.service-content-wrap {
	padding: 18px 0 52px;
}

.service-layout {
	display: grid;
	grid-template-columns: 270px minmax(0, 1fr);
	gap: 24px;
	align-items: start;
}

.service-sidenav {
	position: sticky;
	top: 120px;
	padding: 16px;
	border-radius: 12px;
	border: 1px solid #dce6f6;
	background: #f8fbff;
	box-shadow: 0 8px 20px rgba(17, 34, 71, 0.08);
}

.service-sidenav h3 {
	margin: 0 0 10px;
	font-size: 16px;
	font-weight: 800;
	letter-spacing: 0.8px;
	text-transform: uppercase;
	color: #1e3d74;
}

.service-sidenav ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 6px;
}

.service-sidenav a {
	display: block;
	padding: 9px 10px;
	border-radius: 8px;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.35;
	color: #364c74;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.service-sidenav a:hover {
	background: #e8f0ff;
	color: #0f3270;
}

.service-sidenav a.is-active {
	background: linear-gradient(120deg, #00478d, #176ec8);
	color: #ffffff;
}

.service-content {
	display: grid;
	gap: 20px;
}

.service-hero-card {
	position: relative;
	min-height: 360px;
	border-radius: 20px;
	overflow: hidden;
	display: flex;
	align-items: flex-end;
	padding: 34px;
	background-size: cover;
	background-position: center;
	box-shadow: 0 16px 28px rgba(16, 29, 56, 0.18);
}

.service-hero-card::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(100deg, rgba(7, 19, 50, 0.86), rgba(7, 19, 50, 0.35));
}

.service-hero-copy {
	position: relative;
	z-index: 1;
	max-width: 700px;
	color: #ffffff;
}

.service-eyebrow {
	display: inline-block;
	margin: 0 0 10px;
	padding: 6px 12px;
	border-radius: 999px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 1.1px;
	text-transform: uppercase;
	background: rgba(229, 26, 56, 0.94);
}

.service-hero-copy h1 {
	margin: 0;
	font-size: clamp(30px, 4.2vw, 52px);
	font-family: "Manrope", "Poppins", sans-serif;
	font-weight: 800;
	line-height: 1.08;
}

.service-hero-copy p {
	margin: 14px 0 0;
	font-size: 17px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.92);
}

.service-panel {
	background: #ffffff;
	border: 1px solid #dce6f6;
	border-radius: 16px;
	box-shadow: 0 8px 20px rgba(17, 34, 71, 0.08);
	padding: 26px;
}

.service-panel h2 {
	margin: 0 0 14px;
	font-size: 28px;
	font-family: "Manrope", "Poppins", sans-serif;
	line-height: 1.15;
	color: #00478d;
}

.service-panel p {
	margin: 0;
	font-size: 16px;
	line-height: 1.7;
	color: #404b63;
}

.service-path-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
	margin-top: 14px;
}

.service-path-card {
	padding: 18px;
	border: 1px solid #dbe5f6;
	border-radius: 12px;
	background: #f8fbff;
}

.service-path-card h3 {
	margin: 0 0 8px;
	font-size: 18px;
	line-height: 1.2;
	color: #1a3158;
}

.service-path-card p {
	font-size: 14px;
	line-height: 1.6;
}

.service-benefits {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	margin-top: 14px;
}

.service-benefits li {
	list-style: none;
	padding: 12px;
	border-radius: 10px;
	background: #f2f7ff;
	border: 1px solid #d8e4f8;
	font-size: 14px;
	font-weight: 600;
	color: #27416d;
}

.service-cta {
	padding: 30px;
	text-align: center;
	background: linear-gradient(130deg, #00478d, #0065be);
	border-radius: 16px;
	color: #ffffff;
	box-shadow: 0 14px 28px rgba(8, 27, 66, 0.22);
}

.service-cta h2 {
	margin: 0;
	color: #ffffff;
	font-size: clamp(24px, 3.5vw, 40px);
}

.service-cta p {
	margin: 10px auto 0;
	max-width: 760px;
	color: #dbe8ff;
}

.service-cta a {
	display: inline-flex;
	margin-top: 16px;
	padding: 12px 22px;
	border-radius: 10px;
	background: #ffffff;
	color: #00478d;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.3px;
}

@media (max-width: 1080px) {
	.service-layout {
		grid-template-columns: 1fr;
	}

	.service-sidenav {
		position: static;
	}

	.service-path-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 760px) {
	.services-grid,
	.service-benefits {
		grid-template-columns: 1fr;
	}

	.service-hero-card {
		min-height: 300px;
		padding: 22px;
	}

	.service-panel,
	.services-intro,
	.service-cta {
		padding: 18px;
	}
}

/* Policy & Legal Pages */
.policy-page {
	padding-bottom: 80px;
}

.policy-content-card {
	background: #ffffff;
	padding: 60px;
	border-radius: 24px;
	box-shadow: 0 20px 50px rgba(31, 62, 114, 0.08);
	border: 1px solid #edf2f7;
}

.policy-content-card h2 {
	font-size: 28px;
	color: var(--brand-blue);
	margin: 40px 0 20px;
	font-weight: 700;
}

.policy-content-card h2:first-child {
	margin-top: 0;
}

.policy-content-card p {
	font-size: 16px;
	line-height: 1.8;
	color: #4a5468;
	margin-bottom: 20px;
}

.policy-content-card ul {
	margin-bottom: 24px;
	padding-left: 24px;
}

.policy-content-card ul li {
	font-size: 16px;
	line-height: 1.8;
	color: #4a5468;
	margin-bottom: 10px;
	position: relative;
}

.policy-content-card ul li::before {
	content: "•";
	color: var(--brand-red);
	font-weight: bold;
	display: inline-block;
	width: 1em;
	margin-left: -1em;
}

.last-updated {
	display: block;
	font-size: 14px;
	color: var(--text-muted);
	margin-bottom: 30px;
	font-style: italic;
}

@media (max-width: 768px) {
	.policy-content-card {
		padding: 30px 20px;
		border-radius: 16px;
	}
	
	.policy-content-card h2 {
		font-size: 22px;
		margin-top: 30px;
	}
}
