body, html {
	margin: 0;
	padding: 0;
	font-family: 'Libre Franklin', sans-serif;
	color: #333;
	line-height: 1.7;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.location-hero {
	position: relative;
	min-height: 70vh;
	display: flex;
	align-items: center;
	background: linear-gradient(135deg, #0b477c 0%, #003d66 100%);
	overflow: hidden;
}

.location-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: url('/CSS/img/raleigh.webp');
	background-size: cover;
	background-position: center;
	opacity: 0.25;
}

.hero-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 24, 43, 0.45);
}

.hero-content {
	position: relative;
	z-index: 2;
	color: #fff;
	text-align: center;
	padding: 100px 20px;
}

.eyebrow {
	text-transform: uppercase;
	letter-spacing: 1.6px;
	font-size: 0.9rem;
	font-weight: 700;
	opacity: 0.85;
	margin-bottom: 16px;
}

.hero-content h1 {
	font-size: 3.2rem;
	line-height: 1.2;
	margin-bottom: 20px;
}

.hero-subtitle {
	max-width: 900px;
	margin: 0 auto;
	font-size: 1.2rem;
	opacity: 0.95;
}

.hero-cta-row {
	display: flex;
	justify-content: center;
	gap: 16px;
	flex-wrap: wrap;
	margin-top: 34px;
}

.btn-primary,
.btn-secondary {
	display: inline-block;
	padding: 14px 28px;
	text-decoration: none;
	font-weight: 700;
	border-radius: 6px;
	transition: all 0.25s ease;
}

.btn-primary {
	background: #fff;
	color: #0b477c;
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
	border: 2px solid #fff;
	color: #fff;
}

.btn-secondary:hover {
	background: #fff;
	color: #0b477c;
}

.breadcrumbs-section {
	background: #f8f9fa;
	border-bottom: 1px solid #e5e7eb;
}

.breadcrumbs {
	padding: 16px 20px;
	display: flex;
	gap: 8px;
	font-size: 0.95rem;
	color: #4b5563;
}

.breadcrumbs a {
	color: #0b477c;
	text-decoration: none;
}

.breadcrumbs a:hover {
	text-decoration: underline;
}

.overview-section,
.content-section,
.services-grid-section,
.leadership-section,
.coverage-section,
.map-section,
.faq-section,
.cta-section {
	padding: 80px 20px;
}

.overview-section,
.content-section,
.leadership-section,
.map-section,
.coverage-section {
	background: #ffffff;
}

.content-section.alt,
.services-grid-section,
.faq-section {
	background: #f8f9fa;
}

.two-col-grid {
	display: grid;
	grid-template-columns: 1.5fr 1fr;
	gap: 36px;
	align-items: start;
}

h2 {
	font-size: 2.2rem;
	color: #0b477c;
	margin-bottom: 22px;
	line-height: 1.25;
}

.overview-section p,
.content-section p,
.coverage-section p {
	margin-bottom: 16px;
	color: #4b5563;
}

.office-card,
.coverage-list-card {
	background: #fff;
	border: 1px solid #e5e7eb;
	border-left: 4px solid #0b477c;
	border-radius: 10px;
	padding: 28px;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.07);
}

.office-card h3,
.coverage-list-card h3,
.services-grid h3,
.faq-grid h3 {
	color: #0b477c;
	margin-top: 0;
	margin-bottom: 12px;
}

.text-link {
	color: #0b477c;
	font-weight: 700;
	text-decoration: none;
	border-bottom: 2px solid transparent;
	transition: border-color 0.2s ease;
}

.text-link:hover {
	border-color: #0b477c;
}

.image-strip-section {
	padding: 0 20px;
	margin-top: -30px;
	background: #ffffff;
}

.image-strip-section + .content-section {
	padding-top: 50px;
}

.image-strip {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

.image-strip img {
	width: 100%;
	height: 260px;
	object-fit: cover;
	border-radius: 10px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}

.services-grid article,
.faq-grid article {
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 10px;
	padding: 24px;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}

.services-grid p,
.faq-grid p {
	margin: 0;
	color: #4b5563;
}

.leadership-intro {
	max-width: 900px;
	margin-bottom: 28px;
	color: #4b5563;
}

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

.leader-card {
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}

.leader-card img {
	width: 100%;
	height: 230px;
	object-fit: cover;
	display: block;
}

.leader-card h3,
.leader-card p {
	padding-left: 16px;
	padding-right: 16px;
}

.leader-card h3 {
	margin-top: 14px;
	margin-bottom: 6px;
	color: #0b477c;
}

.leader-card .leader-role {
	margin: 0 0 8px;
	font-weight: 700;
	color: #1f3f5d;
}

.leader-card p {
	margin-bottom: 16px;
	color: #4b5563;
}

.coverage-list-card ul {
	list-style: none;
	margin: 0 0 18px;
	padding: 0;
}

.coverage-list-card li {
	position: relative;
	padding-left: 22px;
	margin-bottom: 8px;
	color: #4b5563;
}

.coverage-list-card li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: #0b477c;
	font-weight: 700;
}

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

.map-card {
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
	min-height: 360px;
}

.location-map {
	width: 100%;
	height: 100%;
	min-height: 360px;
	background: #eef2f7;
}

.map-fallback-content {
	height: 100%;
	min-height: 360px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 24px;
	text-align: center;
	color: #4b5563;
	gap: 10px;
}

.map-fallback-content p {
	margin: 0;
}

.map-fallback-content a {
	color: #0b477c;
	font-weight: 700;
	text-decoration: underline;
}

.cta-section {
	background: linear-gradient(135deg, #0b477c 0%, #003d66 100%);
	color: #fff;
	text-align: center;
}

.cta-section h2 {
	color: #fff;
}

.cta-section p {
	max-width: 850px;
	margin: 0 auto;
	opacity: 0.95;
}

.cta-section .hero-cta-row {
	margin-top: 28px;
}

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

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

	.two-col-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	.hero-content {
		padding: 85px 20px;
	}

	.hero-content h1 {
		font-size: 2.2rem;
	}

	.hero-subtitle {
		font-size: 1.05rem;
	}

	.overview-section,
	.content-section,
	.services-grid-section,
	.leadership-section,
	.coverage-section,
	.map-section,
	.faq-section,
	.cta-section {
		padding: 60px 20px;
	}

	h2 {
		font-size: 1.85rem;
	}

	.image-strip {
		grid-template-columns: 1fr;
	}

	.image-strip img {
		height: 230px;
	}

	.services-grid,
	.leadership-grid,
	.faq-grid {
		grid-template-columns: 1fr;
	}

	.map-card,
	.location-map,
	.map-fallback-content {
		min-height: 300px;
	}
}
