@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..800;1,400..800&family=Oswald:wght@200..700&family=Source+Sans+3:ital,wght@0,200..900;1,200..900&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');



/* Reset */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: "Work Sans", sans-serif;
}

/* Layout */
.container {
	width: 95%;
	max-width: 1400px;
	margin: auto;
}


/* Top Bar */
.top-bar {
	background: #E5E4E2;
	color: #fff;
	font-size: 14px;
	display: flex;
	align-items: center;
	padding: 0;
	text-transform: uppercase;
}

.stock-quote-wrapper {
	align-items: center;
	display: inline-flex;
	background-color: #2A9764;
	padding: 0 16px;
	height: 48px;
	border-radius: 4px;
	padding-right: 200px;
	font-family: "Working Sans", sans-serif;
}

.stock-quote-wrapper a {
	text-decoration: none;
	color: #fff;
}

/* Stock quote text */
.stock-quote {
	display: flex;
	align-items: center;
	color: #fff;
	font-weight: 700;
	text-decoration: none;
	gap: 8px;
}

/* Arrow styling */
.stock-quote .quote-change i {
	color: #0a7d3b;
	background: #fff;
	border-radius: 50%;
	padding: 2px;
	font-size: 16px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

/* Arrow color for up/down */
.stock-quote .quote-change.up i {
	color: #0a7d3b;
	background: #fff;
}

.stock-quote .quote-change.down i {
	color: #c00;
	background: #fff;
}

.stock-quote-wrapper .stock-quote:hover {
	opacity: 0.9;
}

.top-bar .top-links {
	display: inline-flex;
	gap: 20px;
}

.top-bar .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.top-bar .container,
.main-header .container {
	padding-right: 20px;
}


.top-links a {
	color: #687076;
	font-family: "Working Sans", sans-serif;
	font-weight: 600;
	font-size: 12px;
	margin-left: 20px;
	text-decoration: none;
	transition: opacity 0.3s;
}

.top-links a:hover {
	opacity: 0.7;
}

/* Main Header */
.main-header {
	background: #fff;
}

.main-header .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 10px;
	position: relative;
}

.emergency-number {
	position: absolute;
	top: 0;
	right: 0;
	font-size: 12px;
	font-weight: 600;
	color: #51538F;
	margin-top: 20px;
	font-family: "Working Sans", sans-serif;
}

.mobile-emergency {
	display: none;
}

/* Logo */
.logo a {
	font-family: "Working Sans", sans-serif;
	font-size: 32px;
	font-weight: 600;
	letter-spacing: 1px;
	text-decoration: none;
	color: #0a7d3b;
	transition: 0.3s ease;
}

/* Subtle hover effect */
.logo a:hover {
	opacity: 0.8;
}

/* Logo container */
.logo {
	display: flex;
	align-items: center;
	overflow: visible;
	padding: 6px 0;
}

/* SVG sizing */
.logo-svg {
	height: 44px;
	width: auto;
	display: block;
	max-width: 100%;
	transition: transform 0.3s ease;
}

/* Brand colors */
.logo-green {
	fill: #0a7d3b;
}

.logo-blue {
	fill: #1e3a8a;
}

/* Hover effect */
.logo:hover .logo-svg {
	transform: scale(1.05);
}

.logo-wrapper {
	display: inline-block;
	position: relative;
}


.logo-text {
	position: absolute;
	left: 50px;
	bottom: 0;
	font-family: "Working Sans", sans-serif;
	font-size: 17px;
	letter-spacing: 2px;
	font-weight: 800;
	color: #1e3a8a;
	line-height: 1;
	pointer-events: none;
}

/* Navigation */
.nav-desktop {
	display: flex;
	gap: 25px;
	margin-top: 45px;
}

.nav-mobile {
	display: none;
}

.nav-desktop a {
	text-decoration: none;
	color: #11181C;
	font-size: 17px;
	font-weight: 600;
	position: relative;
}

/* Hover underline effect */
.nav-desktop a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -12px;
	width: 100%;
	height: 2px;
	background: #111;
	transform: scaleX(0);
	transition: transform 0.3s ease;
}

.nav-desktop a:hover::after {
	transform: scaleX(1);
}

/* ACTIVE LINK STATE */
.nav-desktop a.active::after {
	transform: scaleX(1);
	background: #000;
}

.mobile-emergency {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background: #fff;
	color: #111;
	text-align: center;
	padding: 20px;
	font-weight: 700;
	font-size: 16px;
	line-height: 1.5;
	z-index: 1600;
	/* above menu */
}

/* Mobile Menu Button */
.menu-toggle {
	display: none;
	font-size: 28px;
	background: none;
	border: none;
	cursor: pointer;
	transition: transform 0.3s ease;
	position: relative;
	z-index: 2000;
}

.menu-toggle.active {
	transform: rotate(90deg);
}

/* Responsive */
@media (max-width: 992px) {


	.top-bar {
		justify-content: center;
		background: #0a7d3b;
		height: 48px;
		padding: 0;
	}

	.nav-mobile {
		display: none;
		flex-direction: column;
		position: fixed;
		top: 0;
		left: 0;
		height: 100%;
		width: 100%;
		background: #4B0082;
		padding: 40px 25px;
		z-index: 1500;
		/* overflow-y: auto; */
	}

	.mobile-emergency {
		display: none;
	}

	.nav-desktop {
		display: none;
	}

	.nav-mobile.active+.mobile-emergency {
		display: block;
	}

	/* TOP NAV LINKS */
	.nav-links {
		display: flex;
		flex-direction: column;
		gap: 20px;
		margin-bottom: 20px;
	}

	.emergency-number {
		display: none;
	}


	.top-links-mobile {
		margin-top: 10px;
		display: flex;
		flex-direction: column;
		gap: 16px;
	}

	.stock-quote-wrapper {
		background: #0a7d3b;
		margin: 0 auto;
		height: 100%;
		width: 100%;
		justify-content: center;
		border-radius: 0;
		padding: 0 16px;
	}


	.top-bar .top-links {
		display: none;
	}

	.main-header {
		background: #fff;
		height: 60px;
		margin-top: 10px;
		margin-bottom: 10px;

	}

	.main-header .container {
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding: 0 16px;
	}

	.menu-toggle {
		display: block;
		font-size: 28px;
		color: #0a7d3b;
		background: none;
		border: none;
		cursor: pointer;
		transition: 0.3s ease;
	}

	/* When active */
	.menu-toggle.active {
		color: #fff;
	}


	.nav-mobile.active {
		display: flex;
	}

	.nav-mobile a {
		font-size: 20px;
		font-weight: 700;
		color: #fff;
		text-decoration: none;
	}

	.mobile-logo {
		position: relative;
		display: inline-block;
		margin-bottom: 30px;
	}
}

.mobile-logo .logo-svg {
	height: 50px;
	/* margin-right: 10px; */
}

.mobile-logo .logo-text {
	position: absolute;
	left: 55px;
	bottom: 2px;
	font-size: 18px;
	letter-spacing: 2px;
	font-weight: 800;
}

.mobile-white {
	color: #fff;
}

/* Divider line */
.nav-divider {
	width: 100%;
	height: 1px;
	background: #fff;
	margin: 20px 0;
	opacity: 0.6;
}


.top-links-mobile {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.top-links-mobile a {
	color: #fff;
	font-weight: 500;
	font-size: 16px;
	text-decoration: none;
}

/* Logo text turns white when menu open */
.main-header.nav-active .logo a .logo-text {
	color: #fff;
}


@media (max-width: 1024px) {

	/* Hide desktop nav earlier */
	.nav-desktop {
		display: none;
	}

	/* Show menu toggle */
	.menu-toggle {
		display: block;
		font-size: 26px;
		color: #0a7d3b;
	}

	/* Clean header layout */
	.main-header .container {
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding: 10px 16px;
	}

	/* Remove absolute positioning chaos */
	.emergency-number {
		position: static;
		margin-top: 5px;
		text-align: center;
		width: 100%;
		font-size: 12px;
	}

	/* Stack header properly */
	.main-header {
		padding-bottom: 10px;
	}

	/* Fix logo scaling */
	.logo-svg {
		height: 40px;
	}

	.logo-text {
		font-size: 14px;
		left: 45px;
	}


	.stock-quote-wrapper {
		padding-right: 20px;
	}

	.top-bar .top-links {
		gap: 10px;
	}

	.top-links a {
		font-size: 11px;
		margin-left: 10px;
	}
}



/* Hero section */
.hero {
	position: relative;
	height: 60vh;
	overflow: hidden;
}

.hero-track {
	display: flex;
	width: 100%;
	height: 100%;
	transition: transform 0.8s ease-in-out;
}


.hero-slide {
	position: relative;
	min-width: 100%;
	height: 100%;
	/* display: none; */
}

.hero-slide.active {
	display: block;
}

.hero-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: brightness(70%);
}

/* Overlay Content */
.hero-content {
	position: absolute;
	top: 50%;
	left: 8%;
	transform: translateY(-50%);
	color: #fff;
	max-width: 500px;
}

.hero-content h2 {
	font-family: "Working Sans", sans-serif;
	margin-bottom: 15px;
}

.hero-content p {
	font-size: 18px;
	margin-bottom: 20px;
}

.hero-content a {
	font-size: 14px;
	font-family: "Working Sans", sans-serif;
	display: inline-block;
	padding: 16px 20px;
	background: #30A46C;
	color: #fff;
	text-decoration: none;
	transition: 0.3s;
}

.hero-content a:hover {
	opacity: 0.8;
}

/* CONTROLS */
.hero-controls {
	position: absolute;
	bottom: 20px;
	width: 100%;
	display: flex;
	justify-content: space-between;
	padding: 0 20px;
}

.hero-controls button {
	font-size: 40px;
	background: none;
	border: none;
	color: #fff;
	cursor: pointer;
}

/* Arrows */
.hero-prev,
.hero-next {
	position: absolute;
	bottom: 20px;
	top: auto;
	transform: none;
	background: transparent;
	border: none;
	font-size: 40px;
	color: white;
	cursor: pointer;
	padding: 10px;
}

.hero-prev {
	left: 20px;
}

.hero-next {
	right: 20px;
}

.hero-controls button:hover {
	color: #0a7d3b;
	transition: 0.3s ease;
}

/* HERO RESPONSIVENESS */

.hero {
	height: 75vh;
}

.hero-content {
	/* left: 5%;
	right: 5%; */
	max-width: 100%;
	justify-content: center;
	align-items: center;
}

.hero-content h2 {
	font-size: 42px;
}

.hero-content p {
	font-size: 18px;
}

.hero-content a {
	padding: 16px 20px;
	font-size: 14px;
	text-transform: uppercase;
}

/* Controls - mobile (bottom) */
.hero-controls {
	bottom: -10px;
}

.hero-controls button {
	font-size: 28px;
}


/* TABLET */
@media (min-width: 768px) {
	.hero {
		margin-top: 20px;
		margin-bottom: 20px;
		height: 55vh;
	}

	.hero-content {
		top: 55%;
	}

	.hero-content h2 {
		font-size: 34px;
	}

	.hero-content p {
		font-size: 16px;
	}

	.hero-controls button {
		font-size: 34px;
	}
}


/* DESKTOP */
@media (min-width: 1024px) {
	.hero {
		height: 75vh;
	}

	.hero-content {
		left: 8%;
		max-width: 500px;
	}

	.hero-content h2 {
		font-size: 56px;
	}

	.hero-content p {
		font-size: 24px;
	}

	/* 👇 move controls UP on desktop */
	.hero-controls {
		bottom: 150px;
	}

	.hero-controls button {
		font-size: 55px;
	}
}

@media (max-width: 480px) {
	.hero-content {
		top: 55%;
	}
}

/* TEXT BLOCK SECTION */

.text-block-section {
	padding: 60px 0;
	background: #fff;
}

.text-block-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 30px;
}

/* LEFT */
.text-block-left h2 {
	font-family: "Working Sans", sans-serif;
	font-size: 24px;
	font-weight: 600;
	color: #11181C;
	line-height: 1.2;
}

/* RIGHT */
.text-block-right p {
	font-size: 18px;
	font-weight: 500;
	color: #444;
	line-height: 1.4;
	margin-bottom: 15px;
}

/* TABLET */
@media (min-width: 768px) {
	.text-block-grid {
		grid-template-columns: 1fr 2fr;
		gap: 40px;
	}

	.text-block-left h2 {
		font-family: "Working Sans", sans-serif;
		font-size: 26px;
	}
}

/* DESKTOP */
@media (min-width: 1024px) {
	.text-block-section {
		padding: 80px 0;
	}

	.text-block-grid {
		grid-template-columns: 1fr 2fr;
		gap: 60px;
	}

	.text-block-left h2 {
		font-size: 28px;
	}

	.text-block-right p {
		font-size: 20px;
	}
}

/*LINK CARDS SECTION */

.link-cards-section {
	padding: 5px 0;
}

.link-cards-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 25px;
}

/* CARD */
.link-card {
	position: relative;
	background: #3a3a3a;
	color: #fff;
	overflow: hidden;
	cursor: pointer;
	transition: background 0.3s ease;
}

/* Hover background */
.link-card:hover {
	background: #1e3a8a;
}

/* IMAGE */
.card-image {
	position: relative;
	width: 100%;
	height: 200px;
	overflow: hidden;
}

.card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

/* Image zoom on hover */
.link-card:hover .card-image img {
	transform: scale(1.05);
}

/* CONTENT */
.card-content {
	padding: 20px;
}

.card-content h3 {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 10px;
}

.card-content p {
	font-size: 14px;
	opacity: 0.8;
	padding-top: 10px;
	border-top: 1px solid rgba(255, 255, 255, 0.3);
}

/* FULL CLICKABLE CARD */
.card-link {
	position: absolute;
	inset: 0;
	z-index: 2;
}

/* =========================
   TABLET
========================= */
@media (min-width: 768px) {
	.link-cards-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 30px;
	}

	.card-image {
		height: 240px;
	}
}

/* =========================
   DESKTOP
========================= */
@media (min-width: 1024px) {

	.link-cards-section {
		padding: 10px 0;
		display: flex;
		justify-content: center;
	}

	.link-cards-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 40px;
		max-width: 1000px;
		width: 100%;
		justify-content: center;

	}

	.link-card {
		width: 480px;
		display: flex;
		flex-direction: column;
		align-items: flex-start;
	}

	.card-image {
		height: 200px;
		width: 100%;
	}

	.card-content h3 {
		font-size: 22px;
	}

	.card-content p {
		font-size: 15px;
	}
}

/* =========================
   STAT GRID SECTION
========================= */

.stat-grid-section {
	position: relative;
	color: #fff;
	overflow: hidden;
	margin-top: 50px;
}

/* Background image */
.stat-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.stat-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: blur(2px);
}

/* Dark overlay */
.stat-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.7);
}

/* Content */
.stat-content {
	position: relative;
	z-index: 2;
	padding: 60px 0;
	text-align: center;
}

/* Heading */
.stat-heading {
	width: 100%;
	max-width: 100%;
	margin: 0 auto 40px;
	font-size: 32px;
	line-height: 1.2;
	font-weight: 600;
}

/* Grid */
.stat-grid {
	max-width: 320px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
}

/* Stat item */
.stat-item {
	border-top: 10px solid rgb(48, 164, 108);
	padding: 15px 0;
}

.stat-item h3 {
	font-family: "Working Sans", sans-serif;
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 10px;
}

.stat-item p {
	font-family: "Working Sans", sans-serif;
	font-size: 14px;
	opacity: 0.9;
	text-transform: uppercase;
	font-weight: 600;
}

.mobile-break {
	display: inline;
}

/* =========================
   TABLET
========================= */
@media (min-width: 768px) {
	.stat-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 40px;
		max-width: 100%;
	}

	.stat-heading {
		font-size: 24px;
	}

	.stat-item h3 {
		font-size: 32px;
	}

	.stat-item p {
		font-size: 15px;
	}

	.mobile-break {
		display: none;
	}
}

/* =========================
   DESKTOP
========================= */
@media (min-width: 1024px) {

	.stat-grid-section {
		padding: 10px 0 !important;
		margin-top: 80px;
	}

	.stat-grid-section .container {
		max-width: 1300px;
		padding-left: 20px;
		padding-right: 20px;
	}

	.stat-grid-inner {
		padding: 0 !important;
		gap: 25px;
	}

	/* .stat-content {
		padding: 80px 0;
	} */

	.stat-heading {
		max-width: 100% !important;
		width: 100%;
		text-align: center;
		font-family: "Working Sans", sans-serif;
		font-size: 40px;
		margin-bottom: 30px;
		gap: 20px;
	}

	.stat-grid {
		gap: 20px;
	}

	.stat-item {
		padding-top: 15px;
	}

	.stat-item h3 {
		font-family: "Working Sans", sans-serif;
		font-size: 3p6x;
	}

	.stat-item p {
		font-family: "Working Sans", sans-serif;
		font-size: 16px;
		text-transform: uppercase;
		font-weight: 500;
	}
}

/* =========================
   INVESTOR SECTION
========================= */

.investor-section {
	padding: 60px 0;
}

/* HEADER */
.investor-header {
	margin-bottom: 30px;
}

.investor-header h2 {
	font-size: 28px;
	font-weight: 700;
}

/* GRID */
.investor-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 25px;
}

/* CARD */
.investor-card {
	background: #f5f5f5;
	display: flex;
	flex-direction: column;
	height: 100%;
}

/* IMAGE */
.investor-image {
	width: 100%;
	height: 200px;
	overflow: hidden;
}

.investor-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* CONTENT */
.investor-content {
	padding: 20px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	flex: 1;
}

.investor-content h3 {
	font-family: "Working Sans", sans-serif;
	font-size: 21px;
	margin-bottom: 15px;
}

/* LIST */
.investor-content ul {
	margin-bottom: 20px;
}

.investor-content li {
	border-bottom: 1px solid #ddd;
}

.investor-content li a {
	font-family: "Working Sans", sans-serif;
	display: flex;
	justify-content: space-between;
	padding: 10px 0;
	font-size: 16px;
	text-decoration: none;
	color: #000;
	transition: 0.2s;
}

.investor-content li a:hover {
	opacity: 0.7;
}

/* BUTTON */
.btn {
	font-family: "Working Sans", sans-serif;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #30A46C;
	color: #fff;
	padding: 12px 16px;
	font-size: 16px;
	text-decoration: none;
	width: fit-content;
	max-width: max-content;
	align-self: flex-start;
	margin-top: auto;
	text-transform: uppercase;
}

/* =========================
   TABLET
========================= */

@media (min-width: 768px) {
	.investor-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 30px;
	}

	.investor-image {
		height: 220px;
	}
}

/* =========================
   DESKTOP
========================= */

@media (min-width: 1024px) {
	.investor-section {
		padding: 80px 0;
	}

	.investor-header h2 {
		font-size: 31px;
		font-family: "Woring Sans", sans-serif;
		font-weight: 500;
	}

	.investor-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 40px;
	}

	.investor-image {
		height: 200px;
	}

	.investor-content {
		padding: 25px;
	}

	.investor-content ul li a {
		font-family: "Working Sans", sans-serif;
		font-size: 17px;
	}

	.investor-content h3 {
		font-size: 24px;
		font-family: "Working Sans", sans-serif;
		font-weight: 600;
	}
}

.icon-grid-section {
	position: relative;
	color: #fff;
	overflow: hidden;
}

/* Background */
.icon-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.icon-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: blur(2px);
}

.icon-bg .overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.7);
}

/* Content */
.icon-grid-section .container {
	position: relative;
	z-index: 1;
	padding: 80px 20px;
}

/* Heading */
.icon-header {
	text-align: center;
	max-width: 700px;
	margin: 0 auto 60px;
}

.icon-header h2 {
	font-size: 28px;
	line-height: 1.4;
}

/* Grid */
.icon-grid {
	display: grid;
	gap: 50px;
}

/* Items */
.icon-item {
	text-align: center;
}

.icon-circle {
	width: 95px;
	height: 95px;
	margin: 0 auto 20px;
	background: #30A46C;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.icon-circle span {
	font-size: 35px;
}

.icon-item h5 {
	font-size: 20px;
	font-weight: 600;
}

/* Button */
.icon-btn {
	margin-top: 50px;
	text-align: center;
}

.icon-btn a {
	font-family: "Working Sans", sans-serif;
	display: inline-block;
	padding: 12px 24px;
	background: #30A46C;
	color: #fff;
	text-decoration: none;
	text-transform: uppercase;
	font-size: 16px;
}

.material-icons,
.material-symbols-outlined {
	font-size: 32px;
	line-height: 1;
}

/* =========================
   DESKTOP
========================= */
@media (min-width: 1024px) {

	.icon-header {
		max-width: 100% !important;
	}

	.icon-header h2 {
		font-family: "Working Sans", sans-serif;
		font-size: 40px;
		font-weight: 500;
	}

	.icon-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 60px;
	}

	.icon-grid-section {
		padding: 10px 0 !important;
	}

	.icon-grid-section .container {
		max-width: 1300px;
		padding-left: 20px;
		padding-right: 20px;
	}


}

.cta-section {
	padding: 80px 0;
	background: #f9f9f9;
	text-align: center;
}

/* Content */
.cta-content {
	font-family: "Working Sans", sans-serif;
	max-width: 100%;
	padding: 0 12px;
	margin: 0 auto 40px;
}

.cta-content h3 {
	width: 100%;
	font-size: 22px;
	margin-bottom: 20px;
}

.cta-content p {
	max-width: 95%;
	margin: 0 auto;
	font-size: 18px;
	line-height: 1.6;
	color: #11181C;
}

/* Button */
.cta-btn a {
	font-family: "Working Sans", sans-serif;
	text-transform: uppercase;
	display: inline-block;
	padding: 14px 24px;
	background: #30A46C;
	color: #fff;
	text-decoration: none;
	font-size: 14px;
	transition: opacity 0.2s ease;
}

.cta-btn a:hover {
	opacity: 0.8;
}

/*DESKTOP */
@media (min-width: 1024px) {

	.cta-section {
		padding: 100px 20px;
	}

	.cta-content {
		max-width: 1100px;
		margin: 0 auto 50px;
		padding: 0 20px;
	}

	.cta-content h3 {
		font-weight: 600;
		font-size: 30px;
	}

	.cta-content p {
		max-width: 800px;
		margin: 0 auto;
		font-size: 20px;
		color: #000;
	}
}

/* CALLOUT SECTION */

.callout-section {
	padding: 40px 20px;
	background: #f9f9f9;
}

/* Grid */
.callout-grid {
	display: grid;
	gap: 30px;
	max-width: 1100px;
	margin: 0 auto;
}

/* Items */
.callout-item {
	text-align: center;
	padding: 60px 20px;
	color: #fff;
}

/* Colors */
.callout-item.green {
	background: #30A46C;
}

.callout-item.blue {
	background: #293b66;
}

.callout-item.gray {
	background: #697177;
}

/* Typography */
.callout-item h4 {
	font-family: "Working Sans", sans-serif;
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 10px;
}

.callout-item a {
	font-family: "Working Sans", sans-serif;
	font-size: 16px;
	font-weight: 600;
	color: #fff;
	line-height: 1.5;

	text-decoration: underline;
	text-decoration-thickness: 1.5px;
	text-underline-offset: 2px;
}

.callout-item p {
	font-family: "Working Sans", sans-serif;
	font-size: 16px;
	font-weight: 600;
	color: #fff;
	text-decoration: none;
	line-height: 1.5;
}

.callout-item a:hover {
	opacity: 0.8;
}

/* Tablet */
@media (min-width: 768px) {
	.callout-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* DESKTOP */
@media (min-width: 1024px) {

	.callout-section {
		padding: 30px 12px;
	}

	.callout-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 24px;
		max-width: 1250px;
	}

	.callout-item {
		padding: 64px 32px;
	}

	.callout-card {
		padding: 32px 24px;
	}

	.callout-item h4 {
		font-size: 20px;
	}

	.callout-item a,
	.callout-item p {
		font-size: 15px;
	}
}

/* FOOTER BASE STYLES */
#footer {
	position: relative;
	color: white;
	font-family: "Working Sans", sans-serif;
	z-index: 1;
	overflow: hidden;
}

/* Background Image + Overlay */
.footer-bg {
	position: absolute;
	inset: 0;
	overflow: hidden;
	z-index: 0;
}


.footer-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.overlay {
	position: absolute;
	inset: 0;
	background-color: rgba(0, 38, 77, 0.85);
}

.footer-logo-text {
	position: absolute;
	left: 50px;
	bottom: 0;
	font-family: "Working Sans", sans-serif;
	font-size: 17px;
	letter-spacing: 2px;
	font-weight: 800;
	color: #fff;
	line-height: 1;
	pointer-events: none;
}

/* FOOTER CONTENT */
.footer-content {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 40px;
	padding: 60px 20px 20px;
	z-index: 1;
	padding-bottom: 60px;
}

/* Footer Intro */
.footer-intro {
	width: 100%;
	margin-top: 20px;
	/* space between logo and intro text */
	font-size: 16px;
	line-height: 1.6;
}

.footer-intro svg {
	display: block;
	margin-bottom: 12px;
}

.footer-intro p {
	font-size: 16px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.9);
}

/* Sitemap */
.footer-sitemap h4,
.footer-contact h4 {
	margin-bottom: 12px;
	font-size: 18px;
}

.footer-sitemap ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-sitemap li {
	margin-bottom: 6px;
}

.footer-sitemap a,
.footer-contact a {
	color: rgba(255, 255, 255, 0.9);
	text-decoration: none;
}

.footer-sitemap a:hover,
.footer-contact a:hover {
	color: #00ff99;
}

/* Contact */
.footer-contact p {
	margin-bottom: 8px;
	display: flex;
	flex-direction: column;
}

.footer-contact .odyssey {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.odyssey-line {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	flex-wrap: nowrap;
	white-space: nowrap;
}

.odyssey-line .label {
	white-space: nowrap;
	opacity: 0.85;
}

.social-links {
	margin-top: 12px;
	display: flex;
	gap: 12px;
	font-size: 20px;
}

.social-links a {
	color: white;
}

.footer-copyright {
	position: relative;
	z-index: 5;
	display: block;
}

.footer-copyright .container {
	display: flex;
	max-width: 1200px;
	margin: 0 auto;
	flex-direction: column;
	gap: 4px;
}

.footer-copyright p {
	margin: 0;
}

.footer-copyright {
	background-color: #0a3c91;
	/* blue background */
	padding: 16px 20px;
	color: white;
	font-size: 0.85rem;
}

/* TABLET + DESKTOP LAYOUT */
@media (min-width: 768px) {
	.footer-content {
		display: grid;
		grid-template-columns: 2fr 1fr 1fr;
		gap: 40px;
		max-width: 1200px;
		margin: 0 auto;
		padding: 80px 40px 40px;
	}

	.footer-intro {
		width: 80%;
	}

	.footer-sitemap,
	.footer-contact {
		width: 100%;
		margin-top: 65px;
	}

	.footer-contact {
		padding-right: 40px;
	}
}

/* DESKTOP */
@media (min-width: 1024px) {
	.footer-intro {
		width: 60%;
	}

	.footer-copyright {
		background-color: #0a3c91;
		/* blue background */
		padding: 16px 20px;
		color: white;
		font-size: 0.85rem;
	}
}