.site-footer .footer-contact {
	font-size: 13px;
	font-family: 'Quicksand', Arial, Helvetica, sans-serif;
}
/* Logo size constraint */
.site-logo {
	max-width: 120px;
	max-height: 120px;
	width: auto;
	height: auto;
	display: block;
	margin: 0 auto;
}
/* Import modern, friendly Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@400;700&family=Quicksand:wght@700&display=swap');

/* Set a modern, friendly font for the whole page */
body {
	font-family: 'Nunito Sans', Arial, Helvetica, sans-serif;
	margin: 0;
	padding: 0;
	background: #eaf6fb;
	text-align: center; /* Center all content by default */
}
/* Simple, centered site header */
.site-header {
	background-color: #1c3b4b; /* Deep blue */
	color: #fff;
	height: 150px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-size: 1.5em;
	letter-spacing: 1px;
	font-family: 'Quicksand', Arial, Helvetica, sans-serif;
	padding: 0;
}

/* Style the CTA banner section */
/* CTA banner with background image and overlay */
.cta-banner {
	position: relative;
	background-image: url('img/cta-bg.jpg');
	background-size: cover;
	background-position: center;
	color: #1c3b4b;
	min-height: 350px;
	height: 350px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 0;
	text-align: center;
}

/* Light overlay for readability */
.cta-overlay {
	position: absolute;
	top: 0; left: 0; right: 0; bottom: 0;
	background: rgba(255, 255, 255, 0.8); /* Teal overlay */
	z-index: 1;
}

/* Content sits above overlay */
.cta-content {
	position: relative;
	z-index: 2;
	width: 100%;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100%;
	padding: 0 60px;
}

.cta-content h2 {
	font-size: 2.8em;
	margin-bottom: 18px;
	font-family: 'Quicksand', Arial, Helvetica, sans-serif;
	margin-top: 0;
}

.cta-content p, .cta-desc {
	font-size: 1.5em;
	margin-bottom: 28px;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
	color: #1c3b4b; /* Darker color for readability */
}

/* Main heading style */
.cta-banner h1 {
	font-size: 2.5em;
	margin-bottom: 20px;
	letter-spacing: 1px;
	font-family: 'Quicksand', Arial, Helvetica, sans-serif;
}

/* Description style */
.cta-banner p {
	font-size: 1.2em;
	margin-bottom: 30px;
	max-width: 500px;
	margin-left: auto;
	margin-right: auto;
}

/* Eye-catching CTA button */
.cta-button {
	background-color: #3cabaf;
	color: #fff;
	padding: 17px 40px;
	text-decoration: none;
	font-size: 1.15em;
	border-radius: 5px;
	border: none;
	box-shadow: 0 2px 8px rgba(0,0,0,0.08);
	font-weight: bold;
	transition: background 0.2s;
	display: inline-block;
	margin-top: 8px;
	letter-spacing: 1px;
	text-transform: uppercase;
	cursor: pointer;
}

.cta-button:hover {
	background-color: #1c3b4b;
}

/* Dark background info section with two columns */
.dark-section {
	display: flex;
	flex-direction: row;
	background: #000;
	border-radius: 0;
	margin-top: 0;
	margin-bottom: 0;
	width: 100vw;
	min-height: 350px;
	height: 350px;
	overflow: hidden;
	text-align: left;
	position: relative;
	left: 50%;
	right: 50%;
	transform: translateX(-50%);
	align-items: center;
}

.info-image-large {
	flex: 1 1 50%;
	min-width: 0;
	max-width: 50%;
	height: 100%;
	min-height: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #000;
	padding: 0;
	overflow: hidden;
}
.info-image-large img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 35%;
	display: block;
	border-radius: 0;
}

.info-text-box {
	flex: 1 1 50%;
	max-width: 50%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 40px 60px;
	color: #fff;
	background: transparent;
	min-width: 0;
	box-sizing: border-box;
	text-align: center;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
	height: 100%;
}
.info-text-box h3 {
	font-family: 'Quicksand', Arial, Helvetica, sans-serif;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-top: 0;
	margin-bottom: 18px;
	color: #fff;
	font-size: 2.2em;
}
.info-text-box p {
	color: #fff;
	font-size: 1.3em;
	margin: 0;
}

@media (max-width: 900px) {
	.site-header {
		height: auto;
		min-height: 80px;
		padding: 10px 0;
	}
	.site-logo {
		max-width: 80px;
		max-height: 80px;
	}
	.cta-banner {
		min-height: 320px;
		height: auto;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.cta-content {
		padding-left: 15px;
		padding-right: 15px;
	}
	.dark-section {
		flex-direction: column;
		width: 100vw;
		min-height: unset;
		height: auto;
		display: flex;
		align-items: stretch;
	}
	.info-image-large, .info-text-box {
		max-width: 100%;
		min-width: 0;
		height: auto;
	}
	.info-image-large {
		height: 220px;
		min-height: 0;
	}
	.info-image-large img {
		max-height: 220px;
		height: 100%;
	}
	.info-text-box {
		padding: 20px 10px;
		align-items: center;
		text-align: center;
		height: auto;
	}
}

@media (max-width: 700px) {
	.info-image, .info-text {
		display: block;
		width: 100%;
		margin: 0 auto 16px auto;
		text-align: center;
	}
	.info-text {
		text-align: center;
	}
}

/* Footer styles */
.site-footer {
	background: #1c3b4b;
	color: #fff;
	text-align: center;
	padding: 24px 10px 18px 10px;
	font-size: 9.5px;
	margin-top: 0;
}
.site-footer a {
    color: #fff;
    text-decoration: underline;
}
.site-footer a:focus, .site-footer a:hover {
    color: #3cabaf;
    outline: 2px solid #fff;
}

/* Make sure the new button in the dark section matches the CTA button style */
.info-text-box a.cta-button {
    margin-top: 28px;
    font-size: 1.15em;
}
