/* RESET & BASE ------------------------------------------------------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
	box-sizing: border-box;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1.5;
	background: #F4F6F8;
	color: #145374;
}
* {
	box-sizing: border-box;
}
ul, ol {
	padding-left: 24px;
}
img {
	max-width: 100%;
	display: block;
}
a {
	color: #145374;
	text-decoration: none;
	transition: color 0.2s;
}
a:focus {
	outline: 2px solid #2189a9;
	outline-offset: 2px;
}

/* TYPOGRAPHY BASE ------------------------------------------------------ */
body {
	font-family: 'Roboto', Arial, sans-serif;
	font-size: 16px;
	background: linear-gradient(135deg, #F4F6F8 0%, #75B8C8 100%);
	min-height: 100vh;
}
h1, h2, h3, h4, h5, h6 {
	font-family: 'Montserrat', Arial, sans-serif;
	color: #145374;
	font-weight: 700;
	margin-bottom: 16px;
	letter-spacing: 0.01em;
}
h1 { font-size: 2.5rem; line-height: 1.12; margin-bottom: 24px; }
h2 { font-size: 2rem; line-height: 1.18; margin-bottom: 20px; }
h3 { font-size: 1.3rem; line-height: 1.25; margin-bottom: 14px; }
h4 { font-size: 1.13rem; margin-bottom: 10px; }
h5, h6 { font-size: 1rem; margin-bottom: 8px; }
p, ul, ol, address, li {
	font-size: 1rem;
	margin-bottom: 14px;
	color: #29384a;
}
p.subheadline {
	font-size: 1.18rem;
	color: #2189a9;
	margin-bottom: 24px;
	font-weight: 500;
}
strong {
	font-weight: 700;
	color: #145374;
}

/* CONTAINER & LAYOUT --------------------------------------------------- */
.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 16px;
}
.content-wrapper {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 20px;
}

/* SECTIONS, SPACING & FLEX LAYOUTS ------------------------------------- */
.section {
	margin-bottom: 60px;
	padding: 40px 20px;
	border-radius: 24px;
	background: linear-gradient(90deg, #ffffff 70%, #75b8c810 100%);
	box-shadow: 0 6px 38px 0 rgba(20, 83, 116, 0.07);
}
.card-container, .service-cards, .service-list, .card-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
}
.card, .service-cards > div, .service-list > div {
	margin-bottom: 20px;
	position: relative;
	background: #fff;
	border-radius: 18px;
	box-shadow: 0 4px 18px 0 rgba(33, 137, 169, 0.08);
	padding: 26px 24px 24px;
	flex: 1 1 260px;
	min-width: 245px;
	max-width: 340px;
	display: flex;
	flex-direction: column;
	gap: 14px;
	transition: box-shadow .2s, transform .2s;
}
.card:hover, .service-cards > div:hover, .service-list > div:hover {
	box-shadow: 0 8px 32px 0 rgba(33,137,169,0.18);
	transform: translateY(-4px) scale(1.02);
}
.content-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: space-between;
}
.text-image-section {
	display: flex;
	align-items: center;
	gap: 30px;
	flex-wrap: wrap;
}
.testimonial-card {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
	padding: 20px;
	margin-bottom: 20px;
	background: #fafdff;
	border: 1.5px solid #e6f0fa;
	box-shadow: 0 3px 10px 0 rgba(33, 137, 169, 0.07);
	border-radius: 16px;
	transition: box-shadow 0.2s;
	font-size: 1.08rem;
	min-width: 250px;
	max-width: 600px;
	color: #14394e;
}
.testimonial-card p { color: #174259; }
.testimonial-card strong {
	color: #145374;
	font-weight: 700;
}
.feature-item {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 15px;
}
.service-cards, .service-list {
	gap: 24px 24px;
	justify-content: flex-start;
}
.footer-nav {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
	margin-bottom: 20px;
}

/* HEADER / NAV --------------------------------------------------------- */
header {
	background: #145374;
	color: #fff;
	box-shadow: 0 6px 20px 0 rgba(30,30,55,0.06);
	position: sticky;
	top: 0;
	z-index: 30;
}
header .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	padding-top: 16px;
	padding-bottom: 16px;
}
header img {
	height: 48px;
	width: auto;
	margin-right: 28px;
}
.main-nav {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
	align-items: center;
}
.main-nav a {
	color: #fff;
	font-family: 'Montserrat', Arial, sans-serif;
	font-size: 1rem;
	font-weight: 500;
	padding: 6px 4px;
	border-radius: 3px;
	transition: background 0.2s, color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
	background: #75B8C8;
	color: #145374;
}
header .btn-primary {
	margin-left: 18px;
}

/* BUTTONS -------------------------------------------------------------- */
.btn-primary {
	background: linear-gradient(90deg, #145374 70%, #2189a9 100%);
	color: #fff;
	font-family: 'Montserrat', Arial, sans-serif;
	font-size: 1.1rem;
	font-weight: 700;
	padding: 13px 32px;
	border: none;
	border-radius: 28px;
	box-shadow: 0 3px 13px 0 rgba(33, 137, 169, 0.12);
	cursor: pointer;
	transition: background 0.17s, color 0.17s, box-shadow 0.19s, transform 0.2s;
	text-align: center;
	display: inline-block;
	outline: none;
	margin: 14px 0 0 0;
}
.btn-primary:hover, .btn-primary:focus {
	background: linear-gradient(90deg, #2189a9 80%, #145374 100%);
	color: #fff;
	transform: translateY(-2px) scale(1.035);
	box-shadow: 0 8px 30px 0 rgba(33,137,169,.20);
}
.btn-secondary {
	background: #fff;
	color: #145374;
	border: 1.5px solid #2189a9;
	padding: 13px 32px;
	border-radius: 28px;
	font-family: 'Montserrat', Arial, sans-serif;
	font-size: 1.1rem;
	font-weight: 700;
	box-shadow: none;
	transition: background .2s, color .2s, border .2s;
	margin: 12px 0 0 0;
	display: inline-block;
}
.btn-secondary:hover, .btn-secondary:focus {
	background: #2189a9;
	color: #fff;
	border: 1.5px solid #2189a9;
}

/* LINKS --------------------------------------------------------------- */
a {
	transition: color 0.2s;
}
a:hover, a:focus {
	color: #2189a9;
}
.footer-nav a {
	font-size: 1rem;
	color: #2189a9;
	font-family: 'Montserrat', Arial, sans-serif;
	font-weight: 500;
	transition: color 0.2s;
}
.footer-nav a:hover, .footer-nav a:focus {
	color: #145374;
	text-decoration: underline;
}

/* FOOTER -------------------------------------------------------------- */
footer {
	background: #fff;
	color: #145374;
	border-top: 3px solid #2189a9;
	box-shadow: 0 -4px 12px 0 rgba(52,74,111,0.04);
	position: relative;
	z-index: 2;
}
footer .container {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	padding: 32px 8px 22px;
	max-width: 1100px;
}
footer .content-wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
}
footer img {
	height: 44px;
	margin-bottom: 16px;
}
address {
	font-style: normal;
	font-size: 0.98rem;
	color: #3a566f;
	display: flex;
	flex-direction: column;
	gap: 4px;
	text-align: center;
}

/* ICONS IN TEXT ------------------------------------------------------- */
p img, li img {
	height: 1.25em;
	margin-right: 7px;
	vertical-align: middle;
	display: inline-block;
}

/* RESPONSIVE ---------------------------------------------------------- */
@media (max-width: 1020px) {
    .main-nav {
        gap: 8px;
		font-size: 0.98rem;
    }
	.card-container, .service-cards, .service-list {
		gap: 16px;
	}
	.section {
		padding: 32px 10px;
	}
	footer .container {
		padding: 28px 5px 12px;
	}
}
@media (max-width: 800px) {
	.card, .service-cards > div, .service-list > div {
		min-width: 180px;
		max-width: 100%;
	}
}
@media (max-width: 768px) {
	header .container {
		flex-direction: row;
		gap: 5px;
	}
	.main-nav, header .btn-primary {
		display: none !important;
	}
	.section {
		margin-bottom: 32px;
		padding: 26px 5px;
	}
	.card-container, .service-cards, .service-list, .card-grid {
		flex-direction: column;
		gap: 18px;
	}
	.content-grid {
		gap: 12px;
	}
	.text-image-section {
		flex-direction: column;
		align-items: flex-start;
		gap: 18px;
	}
	footer .content-wrapper {
		align-items: flex-start;
		text-align: left;
	}
	.footer-nav {
		flex-direction: column;
		gap: 8px;
		align-items: flex-start;
	}
	footer .container {
		padding: 20px 5px 8px;
	}
	.card, .service-cards > div, .service-list > div {
		padding: 18px 12px 16px;
	}
}
@media (max-width: 540px) {
	body {
		font-size: 15px;
	}
	h1 { font-size: 1.6rem; margin-bottom: 18px; }
	h2 { font-size: 1.21rem; margin-bottom: 14px; }
	.card, .service-cards > div, .service-list > div {
		min-width: 90px;
	}
	.section { padding: 17px 2px;}
}
/* --- END RESPONSIVE -------------------------------------------------- */

/* MOBILE MENU -------------------------------------------------------------- */
.mobile-menu-toggle {
	display: none;
	position: relative;
	background: transparent;
	border: none;
	color: #fff;
	font-size: 2.15rem;
	cursor: pointer;
	z-index: 99;
	margin-left: 10px;
	transition: color 0.2s, transform 0.18s;
}
@media (max-width: 768px) {
	.mobile-menu-toggle {
		display: block;
	}
}
.mobile-menu {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: linear-gradient(120deg,#2189a9 60%, #145374 100%);
	transform: translateX(-100%);
	transition: transform 0.35s cubic-bezier(0.86, 0, 0.07, 1);
	z-index: 2000;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 0;
}
.mobile-menu.open {
	transform: translateX(0);
}
.mobile-menu-close {
	margin: 18px 14px 8px 14px;
	align-self: flex-end;
	background: #fff;
	color: #145374;
	border: none;
	font-size: 2.2rem;
	border-radius: 100px;
	line-height: 1;
	padding: 6px 14px 4px 14px;
	cursor: pointer;
	box-shadow: 0 2px 8px rgba(20,83,116,.06);
	transition: background 0.18s, color 0.18s, transform .13s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
	background: #145374;
	color: #fff;
	transform: scale(1.07);
}
.mobile-nav {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin: 23px 34px 0 24px;
	align-self: stretch;
}
.mobile-nav a {
	font-family: 'Montserrat', Arial, sans-serif;
	font-size: 1.18rem;
	font-weight: 600;
	color: #fff;
	background: transparent;
	padding: 12px 4px;
	margin: 0 0 4px 0;
	border-radius: 4px;
	transition: background 0.21s, color 0.21s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
	background: #fff;
	color: #2189a9;
}

.mobile-menu {
	box-shadow: 0 12px 36px 0 rgba(20, 83, 116, 0.14);
}

@media (min-width: 769px) {
	.mobile-menu, .mobile-menu-toggle {
		display: none !important;
	}
}

/* COOKIE BANNER ----------------------------------------------------------- */
.cookie-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100vw;
	z-index: 3000;
	background: linear-gradient(90deg, #ffffff 70%, #75b8c8 100%);
	box-shadow: 0 -4px 18px rgba(20, 83, 116, 0.05);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 26px;
	padding: 22px 13px 18px 13px;
	font-size: 1rem;
	color: #174259;
	border-top: 2px solid #2189a9;
}
.cookie-banner p {
	margin-bottom: 0;
	font-size: 1rem;
	color: #154069;
}
.cookie-banner-buttons {
	display: flex;
	gap: 14px;
}
.cookie-banner .btn-primary, .cookie-banner .btn-secondary {
	padding: 9px 25px;
	border-radius: 18px;
	font-size: 0.98rem;
	margin: 0;
}
.cookie-banner .btn-settings {
	background: transparent;
	color: #145374;
	border: 1.2px solid #145374;
	padding: 9px 19px;
	border-radius: 18px;
	font-weight: 600;
	transition: background .19s, color .19s;
	cursor: pointer;
}
.cookie-banner .btn-settings:hover, .cookie-banner .btn-settings:focus {
	background: #e8f2f6;
	color: #2189a9;
}
@media (max-width: 620px) {
	.cookie-banner {
		flex-direction: column;
		gap: 10px;
		align-items: flex-start;
		padding: 17px 6px 12px 6px;
	}
	.cookie-banner-buttons { gap: 8px; }
}

/* COOKIE PREFERENCE MODAL ------------------------------------------------ */
.cookie-modal-overlay {
	position: fixed;
	top: 0; left: 0;
	width: 100vw; height: 100vh;
	background: rgba(20,83,116,0.34);
	z-index: 5000;
	display: flex;
	justify-content: center;
	align-items: center;
	animation: fadeInModal .25s;
}
@keyframes fadeInModal {
	from { opacity: 0; }
	to { opacity: 1; }
}
.cookie-modal {
	background: #fff;
	border-radius: 22px;
	box-shadow: 0 8px 44px 0 rgba(20,83,116,0.17);
	padding: 38px 34px 32px 34px;
	max-width: 410px;
	width: 94vw;
	color: #145374;
	display: flex;
	flex-direction: column;
	gap: 17px;
	position: relative;
	animation: modalPopIn .26s ease;
}
@keyframes modalPopIn {
	from { transform: scale(.92) translateY(40px); opacity: 0; }
	to { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h2 {
	font-size: 1.22rem;
	color: #2189a9;
	margin-bottom: 8px;
}
.cookie-preference-list {
	display: flex;
	flex-direction: column;
	gap: 14px;
	margin-bottom: 14px;
}
.cookie-pref-item {
	display: flex;
	align-items: center;
	gap: 14px;
	font-size: 1.05rem;
	color: #174259;
}
.cookie-pref-toggle {
	appearance: none;
	width: 36px;
	height: 20px;
	background: #e1effb;
	border-radius: 14px;
	position: relative;
	outline: none;
	transition: background .18s;
	cursor: pointer;
	vertical-align: middle;
}
.cookie-pref-toggle:checked {
	background: #2189a9;
}
.cookie-pref-toggle:before {
	content: '';
	display: block;
	position: absolute;
	top: 2px;
	left: 2px;
	width: 16px; height:16px;
	border-radius: 10px;
	background: #fff;
	transition: transform .19s cubic-bezier(.47,1.5,.04,.98), background .19s;
}
.cookie-pref-toggle:checked:before {
	transform: translateX(16px);
	background: #F4F6F8;
}
.cookie-pref-item[aria-disabled="true"] {
	color: #bbb;
	font-style: italic;
}
.cookie-pref-item[aria-disabled="true"] .cookie-pref-toggle {
	opacity: 0.5;
	cursor: default;
}
.cookie-modal-actions {
	display: flex;
	gap: 12px;
	margin-top: 12px;
}
.cookie-modal-close {
	position: absolute;
	top: 14px;
	right: 17px;
	background: #eaf5fb;
	color: #2189a9;
	border: none;
	font-size: 1.25rem;
	border-radius: 100%;
	padding: 2px 8px 1px 8px;
	cursor: pointer;
	transition: background .15s, color .15s;
	z-index: 1;
	font-weight: 600;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
	background: #2189a9;
	color: #fff;
}

/* FORM ELEMENTS & GENERAL (for contact page etc) -------------------------- */
input, textarea, select, button {
	font-family: inherit;
	font-size: 1rem;
	color: #145374;
}
input, textarea, select {
	border: 1.5px solid #e1effb;
	border-radius: 8px;
	padding: 12px 11px;
	background: #fafdff;
	margin-bottom: 12px;
	transition: border-color 0.18s;
}
input:focus, textarea:focus, select:focus {
	border-color: #2189a9;
	outline: none;
}
label {
	font-family: 'Montserrat', Arial, sans-serif;
	color: #145374;
	font-weight: 600;
	margin-bottom: 2px;
	display: inline-block;
}

/* TABLES (for FAQ & content lists) --------------------------------------- */
table {
	width: 100%;
	border-collapse: collapse;
	margin: 16px 0 20px 0;
}
th, td {
	border: 1.2px solid #d8e6f0;
	padding: 12px 6px;
	text-align: left;
	font-size: 1rem;
}
th {
	background: #e8f2f6;
	color: #145374;
	font-family: 'Montserrat', Arial, sans-serif;
	font-weight: 700;
}

/* MICRO-ANIMATIONS ------------------------------------------------------ */
.btn-primary, .btn-secondary, .btn-settings, .mobile-menu-toggle {
	transition: background .18s, color .18s, box-shadow .18s, transform .19s;
}
.btn-primary:active, .btn-secondary:active, .mobile-menu-toggle:active {
	transform: scale(.97);
}
.card, .service-cards > div, .service-list > div {
	transition: box-shadow 0.17s, transform 0.18s;
}

/* MODERN GRADIENTS/SHADOWS/ROUNDED -------------------------------------- */
.section {
	box-shadow: 0 6px 38px 0 rgba(20, 83, 116, 0.07);
}

/* VISUAL HIERARCHY SPACING ---------------------------------------------- */
.section, .content-wrapper, .testimonial-card, .card, .service-cards > div, .service-list > div {
	margin-bottom: 20px;
}
ul, ol {
	margin-bottom: 14px;
	gap: 10px;
}

/* SPECIFIC PAGE ADJUSTMENTS (if needed) ---------------------------------- */
.service-cards, .service-list {
	margin-top: 7px;
}
.address {
	margin-top: 14px;
}

/* UTILITIES ------------------------------------------------------------- */
.hide { display: none !important; }
.text-center { text-align: center !important; }
.w-100 { width: 100%!important; }

/* END OF STYLE ---------------------------------------------------------- */
