:root {
	--navy: #08245c;
	--blue: #1674ef;
	--orange: #ff6b00;
	--ink: #10213a;
	--muted: #607086;
	--line: #dbe4f0;
	--paper: #fff;
	--soft: #f4f7fb;
	--radius: 22px;
	--shadow: 0 24px 70px rgba(8, 36, 92, 0.13);
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 96px;
}

body {
	margin: 0;
	font-family: Inter, "Segoe UI", Arial, sans-serif;
	color: var(--ink);
	background: #fff;
	line-height: 1.55;
}

img {
	display: block;
	max-width: 100%;
}

a {
	color: inherit;
	text-decoration: none;
}

p {
	margin-top: 0;
}

.container {
	width: min(1180px, calc(100% - 40px));
	margin: auto;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(255, 255, 255, 0.94);
	backdrop-filter: blur(16px);
	border-bottom: 1px solid rgba(8, 36, 92, 0.08);
}

.header-inner {
	min-height: 78px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
}

.brand img {
	width: 255px;
	height: 64px;
	object-fit: contain;
	object-position: left center;
}

.site-nav {
	display: flex;
	align-items: center;
	gap: 28px;
	font-size: 0.92rem;
	font-weight: 650;
}

.site-nav a {
	position: relative;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.active {
	color: var(--orange);
}

.site-nav a.active::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -10px;
	height: 2px;
	background: var(--orange);
}

.menu-toggle {
	display: none;
	border: 1px solid var(--line);
	border-radius: 10px;
	padding: 9px 12px;
	background: #fff;
	font-size: 20px;
}

.btn {
	display: inline-flex;
	flex-shrink: 0;
	white-space: nowrap;
	align-items: center;
	justify-content: center;
	gap: 8px;
	border: 1px solid transparent;
	border-radius: 999px;
	padding: 13px 22px;
	font-weight: 750;
	transition:
		transform 0.2s ease,
		background-color 0.2s ease,
		border-color 0.2s ease;
}

.btn-primary {
	background: var(--orange);
	color: #fff;
	box-shadow: 0 8px 18px rgba(255, 102, 0, 0.22);
}

.btn-primary:hover,
.btn-primary:focus-visible {
	transform: translateY(-2px);
}

.btn-secondary {
	border-color: rgba(255, 255, 255, 0.5);
	background: rgba(255, 255, 255, 0.07);
	color: #fff;
}

.eyebrow {
	font-size: 0.76rem;
	font-weight: 800;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--blue);
}

h1,
h2,
h3 {
	margin: 0 0 18px;
	line-height: 1.05;
}

h1 {
	font-size: clamp(2.8rem, 6vw, 5.8rem);
	letter-spacing: -0.055em;
}

h2 {
	font-size: clamp(2rem, 4vw, 3.65rem);
	letter-spacing: -0.04em;
}

h3 {
	font-size: 1.25rem;
}

.lead {
	max-width: 760px;
	font-size: clamp(1.02rem, 1.6vw, 1.28rem);
	color: var(--muted);
}

.section {
	padding: 76px 0;
}

.section-head {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 40px;
	margin-bottom: 42px;
}

.soft-section {
	background: var(--soft);
}

.text-link {
	font-size: 0.82rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--blue);
}

.standalone-link {
	flex: 0 0 auto;
}

.hero {
	position: relative;
	overflow: hidden;
	padding: 60px 0;
	background:
		radial-gradient(circle at 80% 35%, rgba(33, 122, 255, 0.35), transparent 28%),
		linear-gradient(120deg, #041536, #082d6b 62%, #0b397d);
	color: #fff;
}

.hero::after {
	content: "";
	position: absolute;
	top: -480px;
	right: -330px;
	width: 900px;
	height: 900px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 50%;
	box-shadow:
		0 0 0 70px rgba(255, 107, 0, 0.07),
		0 0 0 145px rgba(22, 116, 239, 0.08);
}

.hero-inner {
	position: relative;
	z-index: 2;
}

.hero-eyebrow {
	color: #75adff;
}

.hero .lead {
	color: #cfdbef;
}

.accent {
	color: var(--orange);
}

.hero-actions {
	display: flex;
	gap: 14px;
	margin-top: 34px;
}

.page-hero {
	position: relative;
	overflow: hidden;
	padding: 54px 0 58px;
	background:
		radial-gradient(
			circle at 82% 30%,
			rgba(33, 122, 255, 0.28),
			transparent 30%
		),
		linear-gradient(120deg, #041536, #082d6b 62%, #0b397d);
	color: #fff;
	border-bottom: 0;
}

.page-hero::after {
	content: "";
	position: absolute;
	top: -520px;
	right: -360px;
	width: 900px;
	height: 900px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 50%;
	box-shadow:
		0 0 0 70px rgba(255, 107, 0, 0.05),
		0 0 0 145px rgba(22, 116, 239, 0.08);
}

.page-hero .container {
	position: relative;
	z-index: 2;
}

.page-hero .eyebrow {
	color: #75adff;
}

.page-hero h1 {
	max-width: 900px;
	margin-top: 10px;
	font-size: clamp(2.45rem, 4.4vw, 4.15rem);
	letter-spacing: -0.045em;
}

.page-hero .lead {
	max-width: 760px;
	margin-bottom: 0;
	color: #cfdbef;
}

.summary-layout {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr);
	align-items: center;
	gap: 64px;
}

.summary-copy .lead {
	margin-bottom: 24px;
}

.summary-facts {
	display: grid;
	gap: 14px;
}

.summary-fact {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 22px 24px;
	border: 1px solid var(--line);
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 10px 30px rgba(8, 36, 92, 0.04);
}

.summary-fact strong {
	font-size: 1.35rem;
	color: var(--navy);
}

.summary-fact span {
	max-width: 230px;
	text-align: right;
	font-size: 0.92rem;
	color: var(--muted);
}

.group-summary {
	padding-bottom: 42px;
}

.companies-preview {
	padding-top: 42px;
	background: #fff;
}

.grid-4 {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}

.company-card {
	min-height: 320px;
	display: flex;
	flex-direction: column;
	border: 1px solid #d9e3f1;
	border-radius: 18px;
	padding: 15px 25px 30px;
	background: #fff;
	box-shadow: 0 10px 30px rgba(8, 36, 92, 0.05);
}

.company-logo {
	height: 58px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}

.company-logo img {
	max-width: 100%;
	max-height: 58px;
	object-fit: contain;
}

.logo-telasana,
.logo-vortex {
	transform: scale(1.09);
}

.company-card p {
	flex: 1;
	font-size: 0.94rem;
	color: #52647f;
}

.capability-preview {
	background: linear-gradient(180deg, #fff, #f4f7fb);
}

.capability-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.capability-card,
.principle-card,
.topic-card,
.service-detail,
.expectation-card {
	padding: 30px;
	border: 1px solid #d9e3f1;
	border-radius: 18px;
	background: #fff;
	box-shadow: 0 10px 30px rgba(8, 36, 92, 0.05);
}

.capability-card p,
.principle-card p,
.topic-card p,
.service-detail p,
.expectation-card p {
	color: #52647f;
}

.service-icon {
	width: 44px;
	height: 44px;
	display: grid;
	place-items: center;
	margin-bottom: 16px;
	border: 1px solid var(--line);
	border-radius: 14px;
	background: #fff;
	color: var(--blue);
	font-size: 1.25rem;
}

.contact-cta {
	padding: 58px 0;
	background: #fff;
}

.contact-panel {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 48px;
	padding: 46px 48px;
	border-radius: var(--radius);
	background:
		radial-gradient(circle at 82% 24%, rgba(33, 122, 255, 0.32), transparent 34%),
		linear-gradient(120deg, #061a43, #0b397d);
	color: #fff;
	box-shadow: var(--shadow);
}

.contact-panel .eyebrow {
	color: #75adff;
}

.contact-panel h2 {
	margin-bottom: 12px;
}

.contact-panel .lead {
	margin: 0;
	color: #cfdbef;
}

.stats {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 20px;
}

.stats-band {
	padding: 28px 0;
	background: #071f50;
	color: #fff;
}

.stat {
	padding: 28px;
	text-align: center;
}

.stat strong {
	display: block;
	font-size: 2rem;
	color: #fff;
}

.stat span {
	font-size: 0.9rem;
	color: #c2cee3;
}

.two-column {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
	align-items: start;
	gap: 56px;
}

.content-block p {
	font-size: 1.02rem;
	color: #52647f;
}

.fact-card {
	padding: 10px 28px;
	border: 1px solid var(--line);
	border-radius: 18px;
	background: #fff;
	box-shadow: 0 10px 30px rgba(8, 36, 92, 0.05);
}

.fact-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 20px 0;
	border-bottom: 1px solid #edf1f6;
}

.fact-row:last-child {
	border-bottom: 0;
}

.fact-row span {
	color: var(--muted);
}

.fact-row strong {
	text-align: right;
	color: var(--navy);
}

.principles-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.company-profile-section {
	padding: 62px 0;
	scroll-margin-top: 96px;
}

.alt-profile {
	background: var(--soft);
}

.company-profile {
	display: grid;
	grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
	align-items: center;
	gap: 64px;
}

.profile-logo {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 200px;
	padding: 32px;
	border: 1px solid var(--line);
	border-radius: 22px;
	background: #fff;
	box-shadow: 0 10px 30px rgba(8, 36, 92, 0.05);
}

.profile-logo img {
	max-height: 150px;
	object-fit: contain;
}

.profile-copy p {
	font-size: 1.02rem;
	color: #52647f;
}

.feature-list {
	margin: 22px 0 0;
	padding: 0;
	list-style: none;
}

.feature-list li {
	position: relative;
	padding: 8px 0 8px 26px;
	color: #364a67;
}

.feature-list li::before {
	content: "•";
	position: absolute;
	left: 5px;
	color: var(--blue);
	font-weight: 800;
}

.service-detail-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.service-detail {
	min-height: 290px;
	padding: 28px;
}

.service-detail:last-child {
	grid-column: 1 / -1;
	width: 100%;
	max-width: none;
}

.service-detail h2 {
	font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.mini-process {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.mini-step {
	padding: 28px;
	border: 1px solid var(--line);
	border-radius: 18px;
	background: #fff;
}

.mini-step span {
	display: block;
	margin-bottom: 24px;
	font-size: 0.82rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	color: var(--blue);
}

.approach-detail-grid {
	display: grid;
	gap: 18px;
}

.approach-detail {
	display: grid;
	grid-template-columns: 90px minmax(0, 1fr);
	gap: 26px;
	padding: 26px 30px;
	border: 1px solid var(--line);
	border-radius: 18px;
	background: #fff;
	box-shadow: 0 10px 30px rgba(8, 36, 92, 0.05);
}

.approach-number {
	font-size: 0.86rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	color: var(--blue);
}

.approach-detail h2 {
	margin-bottom: 10px;
	font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.approach-detail p {
	margin: 0;
	color: #52647f;
}

.contact-page-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
	align-items: start;
	gap: 56px;
}

.direct-contact {
	padding: 38px;
	border-radius: 22px;
	background: linear-gradient(135deg, #061a43, #0b397d);
	color: #fff;
	box-shadow: var(--shadow);
}

.direct-contact .eyebrow {
	color: #75adff;
}

.direct-contact h2 {
	font-size: clamp(1.75rem, 3vw, 2.65rem);
	letter-spacing: -0.035em;
	white-space: nowrap;
	word-break: normal;
}

.direct-contact p {
	color: #cfdbef;
}

.contact-topics {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.topic-card {
	padding: 24px;
}

.site-footer {
	padding: 52px 0 28px;
	background: #061a43;
	color: #fff;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr;
	gap: 50px;
}

.footer-logo {
	width: 260px;
	filter: brightness(0) invert(1);
	opacity: 0.95;
}

.footer-description {
	max-width: 480px;
	margin-top: 22px;
	color: #c8d4ea;
}

.footer-links {
	display: grid;
	gap: 10px;
	color: #c8d4ea;
}

.footer-links a:hover,
.footer-links a:focus-visible {
	color: #fff;
}

.footer-bottom {
	margin-top: 40px;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.14);
	font-size: 0.85rem;
	color: #9fb0cc;
}

.reveal {
	opacity: 0;
	transform: translateY(18px);
	transition:
		opacity 0.7s ease,
		transform 0.7s ease;
}

.reveal.visible {
	opacity: 1;
	transform: none;
}

@media (max-width: 1100px) {
	.grid-4 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.summary-layout,
	.two-column,
	.contact-page-grid {
		grid-template-columns: 1fr;
	}

	.summary-facts {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.summary-fact {
		align-items: flex-start;
		flex-direction: column;
	}

	.summary-fact span {
		text-align: left;
	}

	.service-detail:last-child {
		max-width: none;
	}

	.company-profile {
		grid-template-columns: 1fr;
		gap: 36px;
	}

	.profile-logo {
		min-height: 180px;
	}
}

@media (max-width: 900px) {
	.capability-grid,
	.principles-grid,
	.service-detail-grid,
	.mini-process {
		grid-template-columns: 1fr;
	}

	.service-detail:last-child {
		grid-column: auto;
	}

	.stats {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.site-nav {
		position: absolute;
		top: 74px;
		left: 20px;
		right: 20px;
		display: none;
		flex-direction: column;
		align-items: stretch;
		padding: 18px;
		border: 1px solid var(--line);
		border-radius: 16px;
		background: #fff;
		box-shadow: var(--shadow);
	}

	.site-nav.open {
		display: flex;
	}

	.site-nav a.active::after {
		display: none;
	}

	.menu-toggle {
		display: block;
	}

	.section-head,
	.contact-panel {
		align-items: flex-start;
		flex-direction: column;
	}

	.footer-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 700px) {
	.summary-facts,
	.contact-topics {
		grid-template-columns: 1fr;
	}

	.approach-detail {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.profile-logo {
		padding: 28px;
	}
}

@media (max-width: 560px) {
	.container {
		width: min(100% - 26px, 1180px);
	}

	.brand img {
		width: 205px;
	}

	.grid-4,
	.stats {
		grid-template-columns: 1fr;
	}

	.section {
		padding: 62px 0;
	}

	.page-hero {
		padding: 44px 0 48px;
	}

	.page-hero h1 {
		font-size: clamp(2.25rem, 11vw, 3rem);
	}

	.hero {
		padding: 52px 0;
	}

	.hero-actions {
		align-items: stretch;
		flex-direction: column;
	}

	.hero-actions .btn,
	.contact-panel .btn {
		width: 100%;
	}

	.contact-panel {
		padding: 32px 24px;
	}

	.direct-contact h2 {
		font-size: 1.7rem;
		white-space: normal;
		overflow-wrap: anywhere;
	}

	h1 {
		font-size: 2.7rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	.reveal {
		opacity: 1;
		transform: none;
		transition: none;
	}
}


/* Acquisitions */

.acquisition-intro {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
	align-items: start;
	gap: 56px;
}

.acquisition-contact-card {
	padding: 34px;
	border-radius: 22px;
	background: linear-gradient(135deg, #061a43, #0b397d);
	color: #fff;
	box-shadow: var(--shadow);
}

.acquisition-contact-card .eyebrow {
	color: #75adff;
}

.acquisition-contact-card h2 {
	font-size: clamp(1.8rem, 3vw, 2.6rem);
	word-break: normal;
}

.acquisition-contact-card p {
	color: #cfdbef;
}

.acquisition-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.acquisition-faq {
	background: #fff;
}

.faq-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.faq-item {
	padding: 28px 30px;
	border: 1px solid var(--line);
	border-radius: 18px;
	background: #fff;
	box-shadow: 0 10px 30px rgba(8, 36, 92, 0.05);
}

.faq-item p {
	margin-bottom: 0;
	color: #52647f;
}

/* Contact and Footer Addresses */

.contact-details-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.contact-detail-card {
	padding: 30px;
	border: 1px solid var(--line);
	border-radius: 18px;
	background: #fff;
	box-shadow: 0 10px 30px rgba(8, 36, 92, 0.05);
}

.contact-detail-card h2 {
	font-size: clamp(1.65rem, 3vw, 2.4rem);
}

.contact-detail-card address,
.footer-address {
	font-style: normal;
}

.contact-detail-card address {
	font-size: 1.05rem;
	color: #364a67;
}

.contact-detail-card p {
	margin-top: 22px;
	margin-bottom: 0;
	color: #52647f;
}

.footer-address {
	margin-top: 22px;
	color: #c8d4ea;
	line-height: 1.65;
}

.footer-address strong {
	color: #fff;
}

@media (max-width: 1100px) {
	.acquisition-intro {
		grid-template-columns: 1fr;
	}

	.acquisition-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 800px) {
	.acquisition-grid,
	.faq-list,
	.contact-details-grid {
		grid-template-columns: 1fr;
	}
}


.acquisition-intro h2 {
	font-size: clamp(2rem, 3.2vw, 3.1rem);
}

.acquisition-contact-card h2 {
	font-size: clamp(1.75rem, 2.7vw, 2.35rem);
}


/* Full Review Refinements */

.btn-light {
	border-color: var(--line);
	background: #fff;
	color: var(--navy);
}

.profile-actions {
	margin-top: 26px;
}

.phone-number,
.phone-extension {
	display: block;
}

.phone-extension {
	margin-top: 2px;
	font-size: 0.82em;
}

.acquisition-grid-section h2 {
	max-width: 950px;
	font-size: clamp(2rem, 3.2vw, 3.1rem);
}

.acquisition-contact-callout {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 42px;
	margin-top: 34px;
	padding: 32px 36px;
	border: 1px solid var(--line);
	border-radius: 20px;
	background: var(--soft);
}

.acquisition-contact-callout h2 {
	max-width: 720px;
	margin-top: 8px;
	margin-bottom: 12px;
	font-size: clamp(1.75rem, 3vw, 2.55rem);
}

.acquisition-contact-callout p {
	max-width: 760px;
	margin-bottom: 0;
	color: #52647f;
}

@media (max-width: 1050px) {
	.site-nav {
		position: absolute;
		top: 74px;
		left: 20px;
		right: 20px;
		display: none;
		flex-direction: column;
		align-items: stretch;
		padding: 18px;
		border: 1px solid var(--line);
		border-radius: 16px;
		background: #fff;
		box-shadow: var(--shadow);
	}

	.site-nav.open {
		display: flex;
	}

	.site-nav a.active::after {
		display: none;
	}

	.menu-toggle {
		display: block;
	}
}

@media (max-width: 700px) {
	.acquisition-contact-callout {
		align-items: flex-start;
		flex-direction: column;
		padding: 28px 24px;
	}

	.acquisition-contact-callout .btn {
		width: 100%;
	}
}


/* Final polish */

a:focus-visible,
button:focus-visible {
	outline: 3px solid rgba(22, 116, 239, 0.45);
	outline-offset: 3px;
}

.inline-link {
	color: var(--blue);
	font-weight: 750;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

.contact-panel .btn {
	min-width: max-content;
}

.contact-details-grid {
	align-items: start;
}

.contact-detail-card {
	height: auto;
}

.mini-step p {
	margin: 14px 0 0;
	color: #52647f;
}

.company-development-card {
	grid-column: 1 / -1;
	display: grid;
	grid-template-columns: 52px minmax(0, 1fr);
	column-gap: 24px;
	width: 100%;
	max-width: none;
	min-height: 0;
}

.company-development-card .service-icon {
	grid-row: 1 / 5;
	margin-bottom: 0;
}

.approach-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.approach-step {
	padding: 28px 30px;
	border: 1px solid var(--line);
	border-radius: 18px;
	background: #fff;
	box-shadow: 0 10px 30px rgba(8, 36, 92, 0.05);
}

.approach-step .approach-number {
	display: block;
	margin-bottom: 24px;
}

.approach-step p {
	margin-bottom: 0;
	color: #52647f;
}

.legal-layout {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
	align-items: start;
	gap: 56px;
}

.legal-content h2 {
	margin-top: 46px;
	font-size: clamp(1.75rem, 3vw, 2.55rem);
}

.legal-content h2:first-of-type {
	margin-top: 10px;
}

.legal-content p,
.legal-list {
	color: #52647f;
}

.legal-list {
	display: grid;
	gap: 12px;
	padding-left: 24px;
}

.legal-sidebar {
	position: sticky;
	top: 108px;
	padding: 30px;
	border: 1px solid var(--line);
	border-radius: 18px;
	background: var(--soft);
}

.legal-sidebar h2 {
	font-size: clamp(1.65rem, 3vw, 2.3rem);
}

.legal-sidebar address {
	margin-bottom: 22px;
	font-style: normal;
	line-height: 1.7;
	color: #364a67;
}

.legal-sidebar p {
	color: #52647f;
}

.legal-updated {
	font-size: 0.9rem;
}

@media (max-width: 900px) {
	.approach-grid,
	.legal-layout {
		grid-template-columns: 1fr;
	}

	.legal-sidebar {
		position: static;
	}

	.company-development-card {
		grid-template-columns: 1fr;
	}

	.company-development-card .service-icon {
		grid-row: auto;
		margin-bottom: 16px;
	}
}
