*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	line-height: 1.15;
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	font-family: Poppins, Helvetica, Arial, sans-serif;
}

main {
	display: block;
}

img {
	border-style: none;
	max-width: 100%;
	height: auto;
}

a {
	background-color: transparent;
}

button {
	font-family: inherit;
	font-size: 100%;
	line-height: 1.15;
	margin: 0;
	overflow: visible;
	text-transform: none;
	-webkit-appearance: button;
	cursor: pointer;
}

button::-moz-focus-inner {
	border-style: none;
	padding: 0;
}

/* Navigation */
.site-nav {
	height: 100px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 30px;
}

.site-nav a {
	margin: 0 10px;
	text-decoration: none;
	color: #000;
	font-size: 25px;
	font-weight: 800;
}

.site-nav-links {
	display: flex;
	align-items: center;
	flex-shrink: 0;
}

.site-nav-menu {
	display: flex;
	align-items: center;
	gap: 0;
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-nav-menu li {
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-nav-menu a {
	display: inline-block;
}

.site-nav a:hover,
.site-nav a.is-active {
	color: #1f227d;
}

.site-nav-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	padding: 0;
	border: none;
	background: transparent;
	flex-shrink: 0;
}

.site-nav-toggle__bar {
	display: block;
	width: 24px;
	height: 3px;
	border-radius: 2px;
	background: #000;
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-nav.is-menu-open .site-nav-toggle__bar:nth-child(1) {
	transform: translateY(8px) rotate(45deg);
}

.site-nav.is-menu-open .site-nav-toggle__bar:nth-child(2) {
	opacity: 0;
}

.site-nav.is-menu-open .site-nav-toggle__bar:nth-child(3) {
	transform: translateY(-8px) rotate(-45deg);
}

.site-nav .logo-container {
	width: 100%;
	max-width: 300px;
}

.site-nav .logo-container img {
	width: 100%;
}

.site-logo--single {
	display: block;
	width: 100%;
}

.site-logo--single img {
	width: 100%;
}

.site-logo--split {
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
	max-width: 100%;
}

.site-logo__text {
	color: #000;
	font-family: Poppins, Helvetica, Arial, sans-serif;
	font-weight: 700;
	line-height: 1.15;
	white-space: nowrap;
	margin: 0;
}

.site-nav .site-logo__text {
	font-weight: 800;
	font-size: 28px;
}

.site-nav .logo-container .site-logo--split img {
	width: auto;
	max-width: 100%;
	height: auto;
	max-height: 62px;
	object-fit: contain;
	flex-shrink: 0;
}

@media (max-width: 992px) {
	.site-nav {
		position: relative;
		flex-wrap: wrap;
		padding: 10px;
		height: auto;
		min-height: 50px;
		gap: 0;
	}

	.site-nav-toggle {
		display: flex;
		flex-direction: column;
		gap: 5px;
	}

	.site-nav-links {
		display: none;
		width: 100%;
		flex-basis: 100%;
		padding: 12px 0 4px;
		border-top: 1px solid #e5e5e5;
		margin-top: 10px;
	}

	.site-nav.is-menu-open .site-nav-links {
		display: block;
	}

	.site-nav a,
	.site-nav-menu a {
		font-size: 16px;
		margin: 0;
	}

	.site-nav-menu {
		flex-direction: column;
		align-items: stretch;
		justify-content: flex-start;
		flex-wrap: nowrap;
		gap: 0;
		width: 100%;
	}

	.site-nav-menu li {
		width: 100%;
	}

	.site-nav-menu a {
		display: block;
		padding: 12px 4px;
	}

	.site-nav .logo-container {
		max-width: 130px;
		flex-shrink: 0;
	}

	.site-nav .logo-container .site-logo--split img {
		max-height: 27px;
	}
}

/* Main layout */
.main-container {
	min-height: 70vh;
}

.content-wrapper {
	width: calc(100% - 30px);
	max-width: 1160px;
	margin: auto;
}

/* Hero */
.upper-content {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	width: 100%;
	padding: 20px;
	background:
		var(--hero-bg-image) 90% 50% / 48% no-repeat,
		radial-gradient(41.23% 68.72% at 50% 50%, #0c5fe7 0%, #1f227d 100%);
	aspect-ratio: 4 / 1;
}

.upper-content .content {
	display: flex;
	flex-direction: column;
	width: 30%;
	padding: 0 10px 0 50px;
	text-shadow: 4px 2px 4px rgba(0, 0, 0, 0.25);
	color: #fff;
}

.upper-content .content h1 {
	font-size: clamp(24px, 2vw, 38px);
	margin: 0 0 0.67em;
}

.upper-content .content p {
	font-size: clamp(16px, 2vw, 18px);
}

.btn {
	display: inline-block;
	width: 100%;
	max-width: 300px;
	margin: 20px;
	padding: 20px 30px;
	border: none;
	border-radius: 5px;
	color: #fff;
	font-size: clamp(16px, 1vw, 20px);
	font-weight: 500;
	box-shadow: 4px 2px 4px rgba(0, 0, 0, 0.25);
	text-align: center;
	text-decoration: none;
}

.btn-orange {
	background: #e97b24;
}

.btn-blue {
	background: #1f227d;
}

@media (max-width: 801px) {
	.upper-content {
		background:
			var(--hero-bg-image) 95% 5% / 60% no-repeat,
			radial-gradient(41.23% 68.72% at 50% 50%, #0c5fe7 0%, #1f227d 100%);
		aspect-ratio: 4 / 1;
	}

	.upper-content .content {
		width: 100%;
		padding: 0;
	}

	.upper-content .content h1 {
		margin: 0;
	}

	.upper-content .btn {
		margin: auto;
		padding: 10px 15px;
		max-width: 200px;
	}
}

/* Middle section */
.middle-content {
	display: flex;
	justify-content: space-between;
	padding: 20px;
}

.middle-content .content {
	display: flex;
	justify-content: center;
	flex-direction: column;
	width: 40%;
}

.middle-content.is-swapped,
.lower-content.is-swapped {
	flex-direction: row-reverse;
}

.middle-content .content h2,
.middle-content .section-wysiwyg h2 {
	margin: 0;
}

.middle-content .section-wysiwyg > :first-child {
	margin-top: 0;
}

.middle-content .section-wysiwyg > :last-child {
	margin-bottom: 0;
}

.middle-content .content .btn {
	margin: 20px 0;
	padding: 10px;
	font-size: 20px;
}

.middle-content .image-container,
.middle-content .image-container img {
	width: 100%;
}

@media (max-width: 801px) {
	.middle-content {
		flex-wrap: wrap;
	}

	.middle-content .content {
		width: 100%;
	}

	.middle-content .content p {
		font-size: 16px;
	}

	.middle-content .content h2 {
		font-size: 18px;
		text-align: center;
	}

	.middle-content .column-text .btn {
		width: auto;
		max-width: 300px;
		margin-left: auto;
		margin-right: auto;
	}
}

/* Stats */
.lower-middle {
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-self: center;
	padding: 20px;
}

.lower-middle h3 {
	font-size: 28px;
	font-weight: 600;
}

.lower-middle .text-container {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	max-width: 800px;
	box-shadow: 4px 2px 3px 2px rgba(0, 0, 0, 0.15);
	border-radius: 5px;
}

.lower-middle .stat {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 50%;
	border-right: 1px solid #c4c4c4;
}

.lower-middle .stat:last-child {
	border-right: none;
}

.lower-middle .purple {
	font-size: 38px;
	font-weight: 700;
	color: #26126b;
	margin: 20px 0 0;
}

.lower-middle .grey {
	color: #6c6a6a;
}

@media (max-width: 801px) {
	.lower-middle h3 {
		font-size: 20px;
		text-align: center;
	}

	.lower-middle .grey {
		text-align: center;
	}
}

/* Bottom CTA */
.lower-content {
	display: flex;
	justify-content: space-between;
	padding: 20px;
	align-items: center;
}

.lower-content .text {
	display: flex;
	flex-direction: column;
	justify-content: center;
	flex-wrap: wrap;
	width: 40%;
}

.lower-content .text .purple,
.lower-content .section-wysiwyg .purple,
.lower-content .section-wysiwyg p {
	margin: 0;
	color: #1f227d;
	font-size: 24px;
	font-weight: 600;
}

.lower-content .section-wysiwyg > :first-child {
	margin-top: 0;
}

.lower-content .section-wysiwyg > :last-child {
	margin-bottom: 0;
}

.lower-content .text a {
	width: 100%;
}

.lower-content .text .btn {
	margin: 20px auto;
	padding: 10px;
	font-size: 20px;
}

@media (max-width: 801px) {
	.lower-content {
		flex-wrap: wrap;
	}

	.lower-content .text {
		width: 100%;
	}

	.lower-content .text .purple {
		text-align: center;
	}
}

/* Footer */
.site-footer {
	height: 250px;
	display: flex;
	align-items: center;
	justify-content: space-around;
	background: #f1efef;
	color: #6c6a6a;
}

.site-footer .logo-container {
	width: 100%;
	max-width: 400px;
	padding-bottom: 55px;
}

.site-footer .logo-container img {
	width: 100%;
}

.site-footer .site-logo--single {
	display: block;
	width: 100%;
}

.site-footer .site-logo--single img {
	width: 100%;
}

.site-footer .logo-container .site-logo--split img {
	width: auto;
	max-width: 100%;
	height: auto;
	max-height: 83px;
	object-fit: contain;
	flex-shrink: 0;
}

.site-footer .site-logo__text {
	font-weight: 800;
	font-size: 37px;
}

.footer-content {
	display: flex;
	flex-direction: column;
	height: inherit;
	padding: 30px 0;
}

.footer-content h2 {
	font-size: clamp(20px, 2vw, 1.5em);
}

.footer-content a {
	text-decoration: none;
	margin-bottom: 20px;
	color: #6c6a6a;
}

.footer-menu {
	display: flex;
	flex-direction: column;
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-menu li {
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-menu a {
	display: inline-block;
	text-decoration: none;
	margin-bottom: 20px;
	color: #6c6a6a;
}

.footer-content a:hover,
.footer-menu a:hover {
	color: #1f227d;
}

@media (max-width: 992px) {
	.site-footer {
		flex-direction: column;
		flex-wrap: nowrap;
		height: auto;
		align-items: center;
		justify-content: center;
		text-align: center;
		padding: 20px 10px 30px;
		gap: 10px;
	}

	.site-footer .logo-container {
		padding-bottom: 0;
		max-width: 300px;
		padding-top: 10px;
		width: 100%;
	}

	.site-footer .logo-container .site-logo--split img {
		max-height: 62px;
	}

	.site-footer .site-logo__text {
		font-size: 28px;
	}

	.footer-content {
		padding: 12px 0;
		align-items: center;
		width: 100%;
		max-width: 280px;
	}

	.footer-menu {
		align-items: center;
	}

	.footer-menu a {
		margin-bottom: 14px;
	}
}

/* Inner pages */
.page-content {
	width: calc(100% - 30px);
	max-width: 1160px;
	margin: 40px auto;
	padding: 0 20px;
}

.page-content h1 {
	color: #1f227d;
}

/* Custom page template — body content only */
.custom-page-template {
	padding: 0 15px 40px;
}

.custom-page-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: calc(100% - 30px);
	max-width: 680px;
	margin: 0 auto;
	min-height: 500px;
	text-align: center;
}

.custom-page-title {
	color: #000;
	margin: 0 0 20px;
}

.custom-page-body {
	width: 100%;
}

/* Legal page template */
.legal-page-template {
	padding: 40px 15px;
}

.legal-page-content {
	width: calc(100% - 30px);
	max-width: 1160px;
	margin: 0 auto;
}

.legal-page-body {
	width: 100%;
}

.legal-disclosure-container {
	width: 100%;
	max-width: 100%;
	overflow-wrap: break-word;
	text-align: left;
}

.legal-disclosure-container.is-loading {
	min-height: 120px;
}

.legal-disclosure-container.is-loaded {
	width: 100%;
	max-width: 100%;
}

.legal-disclosure-container,
.legal-disclosure-container * {
	box-sizing: border-box;
	max-width: 100%;
}

.legal-disclosure-container img,
.legal-disclosure-container table {
	height: auto;
}

.legal-disclosure-container table {
	display: block;
	width: 100% !important;
	overflow-x: auto;
}
