/* 
FIND REPLACE COLORS

Dark Blue: #09222a
Hero background, main menu link colors, Row-Pattern text color, card h1

Medium Blue: #214a57
Button color; main link color;

Light Blue: #427f92
Card header row; Row-BG-Text top of gradient; hover color on buttons and links; icon color on card headers; divider between text blocks

Dark Yellow: #d29d3d
Menu hover gradient bottom color; hero text; left line on hero image; Row-Pattern gradient bottom;

Light Yellow: #ffffc0
Row-pattern gradient top; hover color in back to top and Button.

Light Gray: #214a57
Background color for Row-Color

Dark Gray: #8f9699
Text color in Card; header left and right text;

Burnt Orange: #a4721e
Button color and Back to Top color

Circle Pattern: Also have Herringbone and Quatrefoil
.Row-Pattern-BG and .Card-Header-BG and repeating image patterns. You can adjust this to match a client's logo with other patterns in Images-Main: BG-Pattern-Quatrefoil.png, and BG-Pattern-Herringbone.png. Those are for light-colored backgrounds. You need more transparency on dark-colored backgrounds. You have a version of each background labeled "Dark" for that. NO UPLOAD has a PSD with all three patterns where you can preview or adjust the transparence on the color overlay if you have time. 

.Row-BG-Text
This stands for Row Background Text. It's the semi-transparent gradient backgrounds for text in the rows that have background images. It's too complex for find/replace. Use Dreamweaver CSS Designer to set a gradient with a dark brand color bottom and a lighter brand color top. Use RGB so you can make it semi-transparent. Keep the white text legible.

.Contact-Row background color (form at the bottom of most pages)
Convert to a light gray that leans toward a brand color. Currently, it leans blue, and will look wrong with other brand colors. 

*/

@import url('./plugins/forms/styles.css');
@import url('./plugins/fontawesome/css/all.min.css');
:root {
	--primary-color: #214a57;
	--button-bg-color: #214a57;
	--button-text-color: #e9edf1;
	--button-bg-color-hover: #427f92;
	--button-text-color-hover: #e9edf1;
}

* {
	box-sizing: border-box;
}
a {
	color: #214a57;
	text-decoration: none;
}
a:hover {
	text-decoration: none;
	color: #427f92;
}

html {
	scroll-behavior: smooth;
}

html,
body {
	margin-top: 0px;
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 0px;
	padding: 0px;
	background-color: white;
	text-align: center;
	font-size: medium;
	font-family: 'Montserrat', sans-serif;
	font-weight: 400;
	font-style: normal;
	max-width: 2560px;
	display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0px;
	padding: 0.5em 0px;
	font-family: 'Cormorant Garamond', serif;
	font-weight: 300;
	font-style: normal;
	line-height: normal;
}

img {
	max-width: 100%;
	border-style: none;
}

textarea {
	resize: vertical;
}

a[href^='tel:'],
a[href^='mailto:'] {
	/* prevents word break, maintains display type */
	white-space: nowrap;
}
.article h3,
.article h2 {
	font-size: 2em;
}
.article p,
.article ol,
.article ul {
	line-height: 1.5em;
}
.Admin {
	width: 100%;
	text-align: left;
	font-size: x-small;
	color: #afb2b5;
	background-color: #e9edf1;
}
.Admin a {
	margin-left: 24px;
	color: #b4b7b9;
	text-decoration: none;
}
.Box-2 {
	width: 39%;
	display: inline-block;
	vertical-align: top;
	margin-top: 35px;
	padding-left: 5%;
	padding-right: 5%;
	max-width: 633px;
}
.Box-2 h2 {
	font-size: 2em;
}

.Box-2 img {
	border-radius: 267px;
}
.Box-2 p {
	line-height: 1.5em;
}

.Box-3 {
	width: 26%;
	display: inline-block;
	margin-top: 35px;
	padding-left: 3%;
	padding-right: 3%;
	vertical-align: top;
}
.Box-3 h2 {
	font-size: 2em;
}

.Box-3 img {
	width: 70%;
	border-radius: 144px;
	max-width: 302px;
}
.Box-3 ul li {
	text-align: left;
}
.Box-3 li {
	margin-bottom: 16px;
}
.Box-3 p {
	line-height: 1.75em;
}

.Box-Left {
	border-right: 1px solid #a4721e;
}

.Box-Middle {
	border-width: 1px;
	border-color: #a4721e;
	border-right-style: solid;
	border-left-style: solid;
}

.Box-80 {
	width: 800px;
	max-width: 90%;
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.Box-80 .Text {
	line-height: 1.5em;
	font-size: 2em;
	color: #09222a;
	font-style: italic;
	font-family: 'Cormorant Garamond', serif;
}
.Button a {
	background-color: #a4721e;
	color: #ffffff;
	padding-top: 10px;
	padding-right: 20px;
	padding-bottom: 10px;
	padding-left: 20px;
	text-decoration: none;
	border-radius: 6px;
}
.Button a:hover {
	background-color: #d29d3d;
}

.Card {
	width: 15%;
	display: inline-block;
	vertical-align: top;
	margin-left: 1%;
	margin-right: 1%;
	margin-top: 25px;
	min-width: 200px;
	max-width: 320px;
	border-radius: 5px;
	min-height: 219px;
	background-color: #ffffff;
	overflow-x: hidden;
	overflow-y: hidden;
	color: #8f9699;
}
.Card h2,
.Card p {
	max-width: 90%;
	margin-left: auto;
	margin-right: auto;
}
.Card h2 {
	color: #09222a;
}

.Card-Header {
	background-color: #427f92;
	color: #427f92;
}
.Card-Header-BG {
	background-image: url(Images-Main/BG-Pattern-Circles.png);
	width: 100%;
	display: inline-block;
	padding-top: 5px;
	padding-bottom: 5px;
	background-size: 141px auto;
}
.Card-Header i {
	font-size: 25px;
	padding-top: 5px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 5px;
	background-color: #ffffff;
	border-radius: 102px;
}

.Container {
	display: inline-block;
	max-width: 90%;
}

.EZPost-Article-Sidebar iframe {
	width: 100%;
	height: 1500px;
	border-left: 1px solid #115f84;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
}

header {
	display: inline-block;
	width: 100%;
	padding-top: 2em;
	color: #09222a;
	max-width: 90%;
}
header hr {
	width: 40%;
	display: inline-block;
	margin-top: 16px;
}
header .Row {
	width: 100%;
	display: inline-block;
}

.Header-Left {
	display: inline-block;
	float: left;
	margin-left: 5%;
	width: 20%;
	text-align: left;
	margin-top: 40px;
}
.Header-Left a {
	color: #214a57;
}
.Header-Left a:hover {
	color: #427f92;
}

.Header-Right {
	display: inline-block;
	margin-right: 5%;
	float: right;
	width: 20%;
	text-align: right;
	margin-top: 40px;
	color: #8f9699;
}
.Header-Right .Line-1 {
	display: block;
	margin-bottom: 5px;
}

.Hero {
	display: inline-block;
	width: 100%;
	background-color: #09222a;
}

.Hero img {
	width: 55%;
	float: right;
	border-top-left-radius: 2560px;
	border-left: 6px solid #d29d3d;
	border-bottom-left-radius: 2560px;
}

.Hero-Text {
	width: 45%;
	display: inline-block;
	color: #d29d3d;
	font-size: medium;
	margin-top: 8vw;
}
.Hero-Text h1 {
	font-size: 4vw;
}
.Hero-Text h2 {
	font-size: 2.5vw;
}

.Logo {
	display: inline-block;
	width: 519px;
	max-width: 35%;
}
.Lined-List ul {
	display: block;
	border-left-width: 1px;
	margin-top: 19px;
	padding-left: 0px;
	list-style-image: none;
	list-style-type: none;
	width: 100%;
}
.Lined-List hr {
	border-bottom: 1px solid #788e96;
	width: 30%;
	border-top-width: 1px;
	border-top-style: solid;
	opacity: 0.75;
}
.post-card {
	margin-top: 25px;
	min-height: 372px;
	padding-top: 0px !important;
	padding-left: 0px !important;
	padding-right: 0px !important;
}
.post-card-title,
.post-card-description,
.post-card-readmore {
	margin-left: 1em;
	margin-right: 1em;
}
.post-card-description {
	line-height: 1.5em;
}
.post-card-title {
	font-size: 2em;
}

.Row-BG {
	display: inline-block;
	width: 100%;
	background-size: cover;
	background-position: right center;
	background-image: url(Images-Main/BG-How-We-Help.jpg);
}
.Row-BG-Team {
	background-image: url(Images-Main/BG-Team.jpg);
	background-position: right center;
}
.Row-BG-Diagnoses {
	background-image: url(Images-Main/BG-Diagnoses.jpg);
}
.Row-BG .Button a {
	padding-top: 5px;
	padding-right: 10px;
	padding-bottom: 5px;
	padding-left: 10px;
	background-color: #ffffff;
	background-image: -webkit-linear-gradient(
		270deg,
		rgba(255, 255, 255, 1) 0%,
		rgba(159, 175, 181, 1) 100%
	);
	background-image: -moz-linear-gradient(
		270deg,
		rgba(255, 255, 255, 1) 0%,
		rgba(159, 175, 181, 1) 100%
	);
	background-image: -o-linear-gradient(
		270deg,
		rgba(255, 255, 255, 1) 0%,
		rgba(159, 175, 181, 1) 100%
	);
	background-image: linear-gradient(
		180deg,
		rgba(255, 255, 255, 1) 0%,
		rgba(159, 175, 181, 1) 100%
	);
	color: #09222a;
	text-decoration: none;
	border-radius: 4px;
	font-weight: bold;
}
.Row-BG .Button a:hover {
	background-image: -webkit-linear-gradient(
		270deg,
		rgba(170, 184, 189, 1) 0%,
		rgba(255, 255, 255, 1) 100%
	);
	background-image: -moz-linear-gradient(
		270deg,
		rgba(170, 184, 189, 1) 0%,
		rgba(255, 255, 255, 1) 100%
	);
	background-image: -o-linear-gradient(
		270deg,
		rgba(170, 184, 189, 1) 0%,
		rgba(255, 255, 255, 1) 100%
	);
	background-image: linear-gradient(
		180deg,
		rgba(170, 184, 189, 1) 0%,
		rgba(255, 255, 255, 1) 100%
	);
}

.Row-BG-Text {
    width: 30%;
    padding-top: 5%;
    margin-left: 10%;
    padding-left: 5%;
    padding-right: 5%;
    padding-bottom: 5%;
    color: #ffffff;
    background-image: -webkit-linear-gradient(270deg,rgba(47,98,114,0.84) 0%,rgba(7,32,39,0.84) 100%);
    background-image: -moz-linear-gradient(270deg,rgba(47,98,114,0.84) 0%,rgba(7,32,39,0.84) 100%);
    background-image: -o-linear-gradient(270deg,rgba(47,98,114,0.84) 0%,rgba(7,32,39,0.84) 100%);
    background-image: linear-gradient(180deg,rgba(47,98,114,0.84) 0%,rgba(7,32,39,0.84) 100%);
    line-height: 1.5em;
}
.Row-BG-Text h2 {
	font-size: 2em;
}

.Row-Color {
	background-color: #e7e9e9;
	padding-top: 25px;
	padding-bottom: 45px;
}

.Row-Contact {
	background-color: #e9edf1;
	margin-top: 45px;
	padding-top: 45px;
	width: 100%;
	padding-left: 5%;
	padding-right: 5%;
	padding-bottom: 100px;
}
.Row-Contact a {
	display: inline-block;
	padding-top: 5px;
	padding-right: 10px;
	padding-bottom: 5px;
	padding-left: 10px;
	background-color: #214a57;
	color: #ffffff;
	border-radius: 6px;
	text-decoration: none;
}
.Row-Contact h2 {
	font-size: 2em;
}

.Row-Contact a:hover {
	background-color: #427f92;
	text-decoration: none;
}

.Row-Pattern {
    background-image: -webkit-linear-gradient(270deg,rgba(255,240,214,1.00) 0%,rgba(210,157,61,1.00) 100%);
    background-image: -moz-linear-gradient(270deg,rgba(255,240,214,1.00) 0%,rgba(210,157,61,1.00) 100%);
    background-image: -o-linear-gradient(270deg,rgba(255,240,214,1.00) 0%,rgba(210,157,61,1.00) 100%);
    background-image: linear-gradient(180deg,rgba(255,240,214,1.00) 0%,rgba(210,157,61,1.00) 100%);
    color: #09222a;
}
.Row-Pattern-BG {
	background-image: url(Images-Main/BG-Pattern-Circles.png);
	width: 100%;
	padding-top: 45px;
	padding-bottom: 45px;
	background-size: 279px auto;
}
.Row-Pattern-Dark {
	background-color: #09222a;
	width: 100%;
	display: inline-block;
}
.Row-Pattern-Dark .Row-Pattern-BG {
	background-image: url(Images-Main/BG-Pattern-Circles-Dark.png);
}

.Row-Pattern-Dark .Box-80 {
	color: #e7e9e9;
	font-size: medium;
	line-height: 1.5em;
	font-family: inherit;
}
.Row-Pattern-Dark .Box-80 .Text {
	font-family: inherit;
	color: #e7e9e9;
}

.BEGIN-NAV-CSS------------------------------------------- {
}

.Nav-Row {
	display: inline-block;
	width: 100%;
	font-family: 'Cormorant Garamond', serif;
	font-weight: 500;
	font-size: 1.2em;
}

.Nav-Inline-Block {
	display: inline-block;
	width: 100%;
}

/* Navigation styles */

nav {
	display: flex;
	list-style: none;
	justify-content: center;
	padding-bottom: 0.5em;
	padding-top: 0.5em;
}

nav menu {
	display: flex;
	flex-wrap: wrap; /* Wrap menu items on mobile */
	align-items: center;
	list-style-type: none;
	list-style-image: none;
	padding-left: 0px;
	margin: 0px;
}

nav li {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	margin-top: 0;
	margin-bottom: 0;
	position: relative; /* Added for positioning of dropdown-content */
	height: 100%;
}

nav a {
	text-decoration: none;
	color: #122f40;
	padding-top: 0.5em;
	padding-right: 1em;
	padding-left: 1em;
	padding-bottom: 0.5em;
	display: inline-block;
	border-radius: 2px;
}
nav a:hover {
    text-decoration: none;
    background-image: -webkit-linear-gradient(270deg,rgba(255,255,255,1.00) 0%,rgba(255,255,255,1.00) 90.41%,rgba(210,157,61,1.00) 100%);
    background-image: -moz-linear-gradient(270deg,rgba(255,255,255,1.00) 0%,rgba(255,255,255,1.00) 90.41%,rgba(210,157,61,1.00) 100%);
    background-image: -o-linear-gradient(270deg,rgba(255,255,255,1.00) 0%,rgba(255,255,255,1.00) 90.41%,rgba(210,157,61,1.00) 100%);
    background-image: linear-gradient(180deg,rgba(255,255,255,1.00) 0%,rgba(255,255,255,1.00) 90.41%,rgba(210,157,61,1.00) 100%);
    color: #09222a;
    -webkit-box-shadow: inset 0px 0px 2px #e7e9e9;
    box-shadow: inset 0px 0px 2px #e7e9e9;
}

.menu-toggle {
	display: none;
	font-family: inherit;
	font-size: inherit;
	color: #09222a;
}

.dropdown-content {
	position: absolute;
	box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
	z-index: 1;
	top: 100%; /* Position dropdown below its parent */
	left: 0px;
	background-color: #ffffff;
	line-height: normal;
	width: 183px;
	margin: 0px;
	display: none;
	padding: 0px;
}

.dropdown-content a {
	display: block;
	width: 100%;
	box-sizing: border-box; /* Ensure padding is included in width calculation */
	text-align: left;
}

.dropdown-content.show {
	display: block;
}

.dropdown-toggle .close {
	display: none;
}

.dropdown-toggle.active .close {
	display: var(--fa-display, inline-block);
}

.dropdown-toggle.active .open {
	display: none;
}

.dropdown-toggle.active {
	color: #514b4b;
}
.END-NAV-CSS----------------------------------------- {
}
.Header-Left .Header-Right-Sub {
}

/* Media Queries for Mobile responsiveness */

@media only screen and (max-width: 1000px) {
	.BEGIN-NAV-CSS---------------------------------- {
	}
	nav {
		flex-direction: column;
		width: 100%;
		align-items: center; /* Center items horizontally */
	}

	nav ul {
		margin-top: 0; /* Reset margin */
		padding-left: 0; /* Reset padding */
		width: 100%; /* Set width to 100% */
		text-align: center; /* Center items horizontally */
	}

	nav li {
		width: 100%;
		flex-direction: column;
		align-items: flex-start;
		position: relative; /* Added for positioning of dropdown-content */
	}

	nav li a {
		width: 100%;
		color: #09222a;
		/*text-align: left;*/
	}

	.menu-toggle {
		display: inline-block;
		justify-content: flex-start;
		gap: 0.5em;
		align-items: center;
		padding: 1em;
		width: 93%;
		border: none;
		background-color: transparent; /* Optional background color */
		cursor: pointer;
	}

	.menu-toggle i {
		font-size: 1.5em; /* Adjust icon size */
	}

	#main-menu {
		display: none; /* Hide menu by default */
		background-color: #ffffff;
		width: 100%;
	}

	.menu-toggle .close {
		display: none;
	}

	#main-nav.active .menu-toggle .close {
		display: var(--fa-display, inline-block);
	}

	#main-nav.active .menu-toggle .open {
		display: none;
	}

	#main-nav.active #main-menu {
		display: inline-block; /* Show menu on focus or hover of toggle button */
		flex-direction: column;
	}

	.dropdown-content {
		position: static; /* Reset position */
		width: 100%; /* Set width to 100% */
		margin: 0; /* Reset margin */
		padding: 0; /* Reset padding */
	}

	.dropdown-content.show {
		display: block;
	}
	/* Prevent underlining dropdown links on hover/focus */
	nav .dropdown-content a,
	nav .dropdown-content a:active,
	nav .dropdown-content a:focus {
		text-decoration: none !important;
	}
	.END-NAV-CSS--------------------------- {
	}
}

/* back-to-top styles */
.BEGIN-BACKTOTOP---------------------------- {
}
.BackToTop {
	position: fixed;
	z-index: 10;
	right: 10px;
	bottom: 10px;
	background-color: #fcf7f7;
	padding: 10px;
	color: white;
	font-family: sans-serif;
	border-radius: 5px;
	opacity: 0;
	visibility: hidden;
	font-size: medium;

	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	gap: 1em;
}

.BackToTop a {
	display: inline-block;
	padding: 10px;
	background-color: #a4721e;
	border-radius: 5px;
	color: white;
	text-decoration: none;
	box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
	font-size: 0.8em;
	transition:
		color 0.25s,
		background-color 0.25s;
	line-height: normal;
	height: 50px;
	box-sizing: border-box;
	text-align: center;
}

.BackToTop a:hover {
	color: #ffffff;
	background-color: #d29d3d;
}

.BackToTop #BackToTop {
	position: relative;
	display: inline-block;
	cursor: pointer;
	font-size: 20px;
	width: 50px;
}

.BackToTop #BackToTop i {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.BackToTop #CloseBTT {
	position: absolute;
	left: -10px;
	top: -10px;
	width: 20px;
	height: 20px;
	cursor: pointer;
}
.END-BACKTOTOP-------------------------- {
}
/* end back-to-top styles */



/* scroll to highlight styles */
.BEGIN-SCROLL-TO-HIGHLIGHT-------------------------------------------- {
}
@keyframes highlight-ani {
	0% {
		background-color: transparent;
	}
	25% {
		background-color: #fff59d;
	}
	75% {
		background-color: #fff59d;
	}
	100% {
		background-color: transparent;
	}
}

.achor-highlight {
	position: relative;
}

.achor-highlight:after {
	content: '';
	width: 100%;
	height: 100%;

	position: absolute;
	left: 0px;
	top: 0px;
	z-index: 9999999999;

	opacity: 0.25;
	pointer-events: none;

	animation-name: highlight-ani;
	animation-duration: 1.5s;
	animation-iteration-count: 1;
}
.END-SCROLL-TO-HIGHLIGHT--------------------------------------- {
}

@media (max-width: 1250px) {
	.Row-BG-Text {
		width: 35%;
		margin-left: 0px;
	}
	.Box-Middle {
		border-style: solid none;
		padding-top: 35px;
		padding-bottom: 35px;
	}
	.Box-3 {
		width: 80%;
	}
	.Box-2 {
		width: 90%;
	}
	.Box-Left {
		border-right-style: none;
		border-bottom: 1px solid #115f84;
		padding-bottom: 35px;
	}
}

@media (max-width: 1000px) {
	.Row-BG-Text {
		width: 100%;
		margin-left: 0px;
		padding-bottom: 10%;
		max-width: none;
	}
	.Logo {
		max-width: 100%;
		width: 700px;
		margin-bottom: 25px;
	}
	.Header-Left {
		display: none;
	}
	.Header-Right {
		width: 100%;
		text-align: center;
		margin-top: -13px;
		margin-right: 0px;
	}

	.EZPost-Article-Sidebar iframe {
		width: 100%;
		height: 1000px;
		border-left: 1px none #115f84;
		border-top-style: none;
		border-right-style: none;
		border-bottom-style: none;
	}
	.Header-Right .Line-1 {
		display: inline-block;
		margin-bottom: 0px;
		margin-right: 14px;
	}
}

@media (max-width: 550px) {
	.Header-Right-Sub {
		display: block;
		margin-left: auto;
		margin-right: auto;
		margin-bottom: 16px;
	}
	.Row-BG.Row-BG-Diagnoses {
		background-position: 87% 0%;
	}
}

@media (max-width: 428px) {
	.Card {
		min-height: 0px;
	}
}

@media (max-width: 450px) {
	.Card {
		width: 100%;
		margin-left: 0px;
		margin-right: 0px;
		min-height: 0px;
		max-width: 100%;
		margin-bottom: 25px;
	}
}

@media (max-width: 850px) {
	.Hero img {
		border-left-style: none;
		border-radius: 0px;
		border-left-width: medium;
		width: 100%;
	}
	.Hero-Text {
		margin-top: 0px;
		padding-bottom: 20px;
	}
	.Hero-Text h1 {
		font-size: xx-large;
	}
	.Hero-Text h2 {
		font-size: large;
	}
	.Hero .Hero-Text h1 {
	}
}


/* Premium Footer and CTA Redesign */
.Row-Contact {
	background: linear-gradient(to bottom, #ffffff, #fcfaf7);
	border-top: 1px solid #e9edf1;
	padding: 80px 5%;
	width: 100%;
}
.Row-Contact .Container {
	max-width: 1000px;
	margin: 0 auto;
	text-align: center;
}
.Row-Contact h2 {
	color: #09222a;
	font-family: 'Cormorant Garamond', serif;
	font-style: italic;
	font-weight: 500;
	font-size: 2.8em;
	padding-top: 0;
	margin-bottom: 15px;
	letter-spacing: -0.01em;
}
.Row-Contact p {
	font-family: 'Montserrat', sans-serif;
	font-size: 1.15em;
	line-height: 1.7em;
	color: #4a5568;
	max-width: 700px;
	margin: 0 auto 35px auto;
}
.Row-Contact .CTA-Phone-Btn {
	display: inline-block;
	background-color: #a4721e;
	color: #ffffff;
	padding: 16px 38px;
	border-radius: 50px;
	font-weight: 700;
	font-size: 1.15em;
	margin-top: 10px;
	text-decoration: none;
	box-shadow: 0 4px 15px rgba(203, 135, 35, 0.25);
	transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.Row-Contact .CTA-Phone-Btn i {
	margin-right: 8px;
}
.Row-Contact .CTA-Phone-Btn:hover {
	background-color: #d29d3d;
	color: #ffffff;
	text-decoration: none;
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(203, 135, 35, 0.4);
}

/* Contact Page Premium Layout Elements */
.Contact-Grid {
	max-width: 1200px;
	margin: 40px auto;
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
}
.Contact-Card {
	flex: 1;
	min-width: 300px;
	background: #ffffff;
	border: 1px solid #e9edf1;
	border-radius: 12px;
	padding: 40px;
	text-align: left;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}
.Contact-Card h2 {
	font-size: 1.8em;
	color: #09222a;
	border-bottom: 2px solid #427f92;
	padding-bottom: 10px;
	margin-bottom: 25px;
}
.Contact-Card p {
	line-height: 1.7em;
	color: #555;
	margin-bottom: 20px;
}
.Contact-Card p.Sales-Pitch {
	font-family: 'Cormorant Garamond', serif;
	font-style: italic;
	font-size: 1.35em;
	line-height: 1.5em;
	color: #214a57;
	border-left: 3px solid #a4721e;
	padding-left: 20px;
	margin: 25px 0;
}
.Contact-Card .Info-Item {
	display: flex;
	align-items: flex-start;
	gap: 15px;
	margin-bottom: 25px;
}
.Contact-Card .Info-Item i {
	font-size: 1.4em;
	color: #214a57;
	margin-top: 3px;
}
.Map-Placeholder {
	background: #f4f6f7;
	border: 1px dashed #afb2b5;
	border-radius: 8px;
	height: 200px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: #8f9699;
	margin-top: 25px;
}
.Map-Placeholder i {
	font-size: 2em;
	color: #afb2b5;
	margin-bottom: 10px;
}

/* Premium Footer */
footer {
	background-color: #09222a;
	color: #e9edf1;
	padding: 60px 5% 40px 5%;
	font-size: 0.95em;
	width: 100%;
	display: inline-block;
}
.Footer-Content {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	text-align: left;
}
.Footer-Brand {
	flex: 1.5;
	min-width: 250px;
}
.Footer-Brand h3 {
	font-size: 1.8em;
	color: #d29d3d;
	padding-top: 0;
	margin-bottom: 15px;
}
.Footer-Brand p {
	line-height: 1.6em;
	color: #b4b7b9;
}
.Footer-Nav {
	flex: 1;
	min-width: 180px;
}
.Footer-Nav h4 {
	font-size: 1.2em;
	color: white;
	margin-bottom: 20px;
	padding-top: 0;
}
.Footer-Nav ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.Footer-Nav li {
	margin-bottom: 10px;
}
.Footer-Nav a {
	color: #b4b7b9;
}
.Footer-Nav a:hover {
	color: #d29d3d;
}
.Footer-Contact {
	flex: 1;
	min-width: 180px;
}
.Footer-Contact h4 {
	font-size: 1.2em;
	color: white;
	margin-bottom: 20px;
	padding-top: 0;
}
.Footer-Contact p {
	margin-bottom: 12px;
	color: #b4b7b9;
}
.Footer-Contact a {
	color: #d29d3d;
}
.Footer-Contact a:hover {
	text-decoration: underline;
}
.Footer-Bottom {
	max-width: 1200px;
	margin: 40px auto 0 auto;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	text-align: left;
	font-size: 0.85em;
	color: #788e96;
}

/* Responsive adjustments for Premium CTA and Footer */
@media (max-width: 768px) {
	.Row-Contact {
		padding: 50px 20px !important;
	}
	.Row-Contact h2 {
		font-size: 2.0em !important;
		line-height: 1.2em !important;
	}
	.Row-Contact p {
		font-size: 1.0em !important;
		margin-bottom: 25px !important;
		padding: 0 10px !important;
	}
	.Row-Contact .CTA-Phone-Btn {
		padding: 14px 30px !important;
		font-size: 1.05em !important;
		display: inline-block !important;
		width: 100% !important;
		max-width: 350px !important;
		box-sizing: border-box !important;
		margin-top: 5px !important;
	}
	.Footer-Content {
		gap: 30px !important;
	}
	.Footer-Brand, .Footer-Nav, .Footer-Contact {
		flex: 1 1 100% !important;
		text-align: center !important;
	}
	.Footer-Nav ul {
		display: flex !important;
		flex-direction: column !important;
		align-items: center !important;
	}
	.Footer-Bottom {
		text-align: center !important;
		margin-top: 30px !important;
	}
}

@media (max-width: 900px) {
	.Text, .Box-80 .Text {
		font-size: 1.5em !important;
	}
}

@media (max-width: 500px) {
	.Hero-Text {
		width: 100% !important;
	}
}
