/* ========== RESET & BASE ========== */
html,
body {
	font-family: 'Lato', sans-serif;
	width: 100%;
	min-height: 100%;
	margin: 0;
	padding: 0;
	overflow-x: hidden;
}

.page-container {
	width: 100%;
	max-width: 100vw;
	margin: 0 auto;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
}

img,
video {
	max-width: 100%;
	height: auto;
	display: block;
}

.visually-hidden {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	border: 0;
	white-space: nowrap;
}

/* ========== HEADER & BANNER ========== */
.header {
	background: #B2C8D2;
	width: 100%;
	max-width: 1200px;
	margin: 10px auto;
	box-sizing: border-box;
}

.scrolling-text {
	font-family: "Allura", cursive;
	font-size: 25px;
	color: #2F3A4C;
	text-align: center;
	background: #B2C8D2;
	padding: 10px 10px;
	overflow: hidden;
	white-space: nowrap;
	animation: marquee 12s linear infinite;
	box-sizing: border-box;
}

@keyframes marquee {
	0% {
		text-indent: 100%;
	}

	100% {
		text-indent: -100%;
	}
}

/* ========== NAVIGATION ========== */
.main-nav {
	background: #2F3A4C;
	padding: 15px 0;
	margin: 0 auto;
	width: 100%;
	max-width: 1200px;
	box-sizing: border-box;
	overflow: visible !important;
	position: relative;
}

.nav-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 1200px;
	margin: 0 auto;
	padding-right: 35px;
	position: relative;
}

.logo {
	height: 80px;
	width: auto;
	margin-left: 16px;
	display: block;
}

.hamburger {
	display: none;
	flex-direction: column;
	justify-content: center;
	width: 36px;
	height: 36px;
	background: none;
	border: none;
	cursor: pointer;
	z-index: 1001;
	position: relative;
}

.hamburger span {
	height: 4px;
	width: 100%;
	background: #fff;
	border-radius: 2px;
	margin: 5px 0;
	transition: 0.3s;
}

.nav-links {
	display: flex;
	gap: 10px;
	align-items: center;
	margin-left: auto;
	box-sizing: border-box;
}

nav a.apply-now,
.hero-content .apply-now {
	background: #B09375;
	color: #fff;
	border: none;
	border-radius: 50px;
	padding: 18px 22px;
	font-weight: bold;
	transition: background 0.2s, transform 0.2s;
	display: inline-block;
}

nav a.apply-now:hover,
.hero-content .apply-now:hover {
	background: #8c735d;
	color: #fff !important;
	transform: translateY(-2px) scale(1.04);
}

/* Base nav links */
nav a {
	color: #F6F5F1;
	text-decoration: none;
	font-size: 18px;
	font-weight: 500;
	background: #2F3A4C;
	border-radius: 50px;
	padding: 12px;
	transition: color 0.2s;
}

/* Hover effect for ALL nav links*/
nav a:hover {
	background: none;
	color: #8c735d;
}

/* No hover effect for logo link */
nav a.logo-link,
nav a.logo-link:hover,
nav a.logo-link:active,
nav a.logo-link:focus {
	background: none !important;
	color: inherit !important;
	padding: 0 !important;
	border-radius: 0 !important;
}

/* logo link align image nicely */
nav a.logo-link {
	display: flex;
	align-items: center;
}

/* NAVIGATION RESPONSIVE */
@media (max-width: 1000px) {
	.nav-container {
		padding-right: 15px;
	}

	.logo {
		height: 60px;
		margin-left: 8px;
	}

	.hamburger {
		display: flex;
	}

	.nav-links {
		display: none;
		flex-direction: column;
		background: #2F3A4C;
		width: 100vw;
		left: 0;
		right: 0;
		position: absolute;
		top: 100%;
		z-index: 1000;
		font-family: 'Lato', sans-serif;
		padding-bottom: 30px;
	}

	.nav-links.active {
		display: flex;
	}
}

/* ========== HERO SECTION ========== */
.hero-section {
	position: relative;
	width: 100%;
	max-width: 1200px;
	margin: 10px auto;
	box-sizing: border-box;
}

.hero-bg {
	width: 100%;
	height: 600px;
	object-fit: cover;
	display: block;
}

.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.5);
	mix-blend-mode: multiply;
	z-index: 1;
}

.hero-content {
	position: absolute;
	z-index: 2;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: #F6F5F1;
	padding: 0 32px;
}

.welcome-container {
	margin-bottom: 16px;
	display: flex;
	justify-content: center;
}

.welcome-bg {
	background: rgba(176, 147, 117, 0.8);
	padding: 5px 100px;
	display: inline-block;
}

.welcome-text {
	font-family: "Allura", cursive;
	font-size: 40px;
	color: #F6F5F1;
	opacity: 95%;
}

.hero-content h1 {
	font-size: 55px;
	margin: 10px 0 4px 0;
	font-weight: bold;

}

.hero-content h2 {
	font-size: 35px;
	margin: 8px 0 4px 0;
	font-weight: bold;
}

.hero-quote {
	font-size: 18px;
	margin-bottom: 22px;
	margin-top: 20px;
}

.hero-content .apply-now {
	margin-top: 18px;
}

.hero-apply-now {
	font-size: 22px !important;
	padding: 18px 45px !important;
	border-radius: 60px !important;
	text-align: center !important;
	display: inline-block !important;
	text-decoration: none;
}

/* HERO RESPONSIVE */
@media (max-width: 900px) {
	.hero-bg {
		height: 500px;
	}

	.hero-content {
		padding: 0 12px;
	}

	.welcome-bg {
		padding: 5px 40px;
	}

	.welcome-text {
		font-size: 30px;
	}

	.hero-content h1 {
		font-size: 34px;
	}

	.hero-content h2 {
		font-size: 24px;
	}

	.hero-quote {
		font-size: 15px;
	}

	.hero-apply-now {
		font-size: 17px !important;
		padding: 12px 22px !important;
	}
}

@media (max-width: 700px) {
	.hero-section {
		margin: 2px auto;
		max-width: 100vw;
	}

	.hero-bg {
		height: 400px;
		min-height: 100px;
	}

	.hero-content {
		padding: 0 4vw;
	}

	.welcome-bg {
		padding: 2px 15px;
	}

	.welcome-text {
		font-size: 22px;
	}

	.hero-content h1 {
		font-size: 27px;
		line-height: 1.1;
	}

	.hero-content h2 {
		font-size: 16px;
	}

	.hero-quote {
		font-size: 12px;
		margin-top: 6px;
		margin-bottom: 12px;
	}

	.hero-apply-now {
		font-size: 14px !important;
		padding: 6px 12px !important;
		border-radius: 30px !important;
	}
}

/* ========== INFO BAR ========== */
.info-bar {
	background: #F6F5F1;
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	height: auto;
	max-width: 1200px;
	margin: 10px auto;
	box-sizing: border-box;
	flex-wrap: wrap;
}

.info-item {
	display: flex;
	flex-direction: row;
	align-items: center;
	flex: 1 1 0;
	text-align: left;
	justify-content: center;
	font-family: "Allura", cursive;
	font-size: 25px;
	color: #000;
	margin: 0;
	font-weight: 100;
}

.info-icon {
	height: 115px;
	margin-bottom: 0;
}
.info-item {
  position: relative;
  cursor: pointer; 
}

.info-tooltip {
  visibility: hidden;
  opacity: 0;
  width: 300px;
  background: #F6F5F1;
  color: #000;
  text-align: center;
  border-radius: 8px;
  padding: 14px 18px;
  position: absolute;
  z-index: 10;
  bottom: 115%; 
  left: 50%;
  transform: translateX(-50%);
  transition: opacity 0.22s, visibility 0.22s;
  font-size: 1.4rem;
  box-shadow: 0 6px 18px rgba(47,58,76,0.09);
  pointer-events: none; 
}

.info-item:hover .info-tooltip,
.info-item:focus .info-tooltip {
  visibility: visible;
  opacity: 1;
}

.info-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -9px;
  border-width: 9px;
  border-style: solid;
  border-color: #2F3A4C transparent transparent transparent;
}

/* INFO BAR RESPONSIVE */
@media (max-width: 1000px) {
	.info-bar {
		flex-direction: row;
		gap: 10px;
		padding: 10px 0;
	}

	.info-item {
		flex-direction: column;
		align-items: center;
		font-size: 22px;
	}
}

@media (max-width: 700px) {
	.info-bar {
		flex-direction: row;
		gap: 10px;
		padding: 60px 0;
	}
}

/* ========== PASTOR SECTION ========== */
.pastor-section {
	display: flex;
	align-content: flex-start;
	justify-content: space-between;
	gap: 48px;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	box-sizing: border-box;
}

.pastor-left {
	flex: 1 1 0;
	min-width: 320px;
	max-width: 600px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding-left: 40px;
	box-sizing: border-box;
}

.pastor-title {
	font-size: 15px;
	color: #B09375;
	font-weight: 700;
	margin-top: 60px;
}

.pastor-greeting {
	font-size: 30px;
	color: #2f3a4c;
	font-weight: bold;
	margin-bottom: 15px;
}

.pastor-message {
	font-size: 20px;
	color: #2F3A4C;
	margin-bottom: 10px;
	line-height: 1.55;
	max-width: 700px;
}

.pastor-signature {
	font-family: "Allura", cursive;
	font-size: 35px;
	color: #B09375;
	line-height: 1.65;
	max-width: 500px;
}

.pastor-signature-fade {
	font-size: 15px;
	color: #ababab;
	margin-top: 0;
}

.pastor-right {
	flex: 0 0 auto;
	display: flex;
	align-items: flex-start;
	justify-content: flex-end;
	padding-right: 40px;
}

.pastor-image {
	position: relative;
	width: 410px;
	height: auto;
	background: #f6f5f1;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	overflow: visible;
}

/* PASTOR RESPONSIVE */
@media (max-width: 900px) {
	.pastor-section {
		flex-direction: column;
		gap: 20px;
		align-items: center;
	}

	.pastor-left,
	.pastor-right {
		width: 100%;
		max-width: 100%;
		padding-left: 25px;
		padding-right: 8px;
	}

	.pastor-image {
		width: 95vw;
		max-width: 400px;
		height: auto;
	}
}

/* ========================SPACER BAR======================== */
.spacer-bar {
	background: #2F3A4C;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 65px 0;
	width: 100%;
	max-width: 1200px;
	margin: 10px auto;
	box-sizing: border-box;
}

/* ========== ABOUT US SECTION ========== */
.about-us-section {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	box-sizing: border-box;
	gap: 48px;
}

.about-us-left {
	position: relative;
	width: 520px;
	display: flex;
	align-items: flex-start;
	justify-content: flex-end;
	margin-left: 25px;
}

.open-book-image {
	width: 420px;
	height: auto;
	object-fit: cover;
	display: block;
	z-index: 1;
	position: relative;
}

.about-us-right {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	padding-right: 40px;
	padding-top: 30px;
	box-sizing: border-box;
}

.about-us-title,
.about-us-line,
.about-us-text {
	text-align: right;
}

.about-us-title {
	font-size: 30px;
	color: #2f3a4c;
	font-weight: bold;
	margin-top: 10px;
}

.about-us-line {
	background: #B2C8D2;
	width: 150px;
	height: 4px;
	margin-bottom: 24px;
	border-radius: 2px;
}

.about-us-text {
	font-size: 20px;
	color: #2F3A4C;
	margin-bottom: 30px;
	line-height: 1.55;
	max-width: 700px;
}

.about-us-button {
	background: #B2C8D2;
	color: #fff;
	font-size: 20px;
	border: none;
	border-radius: 50px;
	padding: 13px 28px;
	font-weight: bold;
	text-decoration: none;
	box-shadow: 0 2px 6px rgba(255, 244, 244, 0.09);
	transition: background 0.2s, transform 0.2s;
	display: inline-block;
	margin-left: auto;
}

/* ABOUT US RESPONSIVE */


@media (max-width: 900px) {
	.about-us-section {
		flex-direction: column;
		align-items: center;
		gap: 20px;
	}

	.about-us-left,
	.about-us-right {
		width: 100%;
		max-width: 100%;
		height: auto;
		padding-left: 25px;
		padding-right: 25px;
	}

	.about-us-title,
	.about-us-line {
		text-align: right;
		margin-left: 0;
	}

	.about-us-text {
		text-align: right;
	}

	.about-us-line {
		margin-bottom: 16px;
	}

	.about-us-button {
		margin-left: 0;
		margin-bottom: 30px;
	}
}

/* ========== WHAT WE OFFER BAR/CARDS ========== */
.what-we-offer-bar {
	background: #B09375;
	opacity: 81%;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 110px;
	position: relative;
	width: 100%;
	max-width: 1200px;
	margin: 10px auto;
	box-sizing: border-box;
}

.what-we-offer-content {
	display: flex;
	align-items: center;
	justify-content: center;
}

.offer-title {
	color: #f6f5f1;
	font-size: 30px;
	font-weight: bold;
	margin: 0 25px;
}

.offer-line {
	display: inline-block;
	width: 95px;
	height: 3px;
	background: #f6f5f1;
	border-radius: 2px;
}

.what-we-offer-rectangle {
	position: absolute;
	right: 0px;
	bottom: -30px;
	width: 170px;
	height: 68px;
	background: #b2c8d2;
	mix-blend-mode: multiply;
	z-index: 2;
}

.offer-rect-section {
	width: 100%;
	display: flex;
	justify-content: center;
	margin: 0;
	position: relative;
}

.offer-rect {
	width: 100%;
	max-width: 1200px;
	min-height: 500px;
	background: #F6F5F1;
	position: relative;
	margin: 0 auto;
	padding: 0 24px;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	align-items: center;
	mix-blend-mode: multiply;
}

.what-we-offer-cards {
	display: flex;
	padding: 60px 0;
	flex-direction: row;
	gap: 38px;
	justify-content: center;
	align-items: stretch;
	width: 90%;
	max-width: 1700px;
	z-index: 10;
	position: relative;
}

.offer-card {
	background: #fff;
	border-radius: 20px;
	padding: 38px 30px;
	width: 400px;
	height: 370px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	position: relative;
}

.offer-card-title {
	font-size: 22px;
	color: #2F3A4C;
	font-weight: 700;
}

.offer-card-subtitle {
	font-family: "Allura", cursive;
	font-size: 20px;
	color: #B09375;
	margin-bottom: 10px;
}

.offer-card-text {
	font-size: 18px;
	color: #2F3A4C;
	margin-bottom: 20px;
	line-height: 1.30;
}

.offer-section-btn-container {
	width: 100%;
	display: flex;
	justify-content: center;
	margin-bottom: 45px;
	margin-top: -15px;
}

.offer-section-btn {
	background: #B2C8D2;
	color: #fff;
	font-size: 20px;
	border: none;
	border-radius: 50px;
	padding: 13px 38px;
	font-weight: 600;
	text-decoration: none;
	box-shadow: 0 2px 6px rgba(255, 244, 244, 0.09);
	transition: background 0.2s, transform 0.2s;
	display: inline-block;
	text-align: center;
}

.offer-section-btn:hover {
	background: #8c735d;
	color: #fff;
	transform: translateY(-2px) scale(1.04);
}

.offer-blue-rect {
	position: absolute;
	left: -82px;
	bottom: -105px;
	width: 170px;
	height: 68px;
	background: #B2C8D2;
	mix-blend-mode: multiply;
	box-sizing: border-box;
	flex-direction: column;
}

.secondary-logo {
	position: absolute;
	width: 300px;
	height: auto;
	left: 90px;
	top: -60px;
}


/* WHAT WE OFFER RESPONSIVE */
@media (max-width: 900px) {
	.what-we-offer-cards {
		flex-direction: column;
		align-items: center;
		gap: 18px;
		width: 100%;
		margin: 0 auto;
	}

	.offer-card {
		width: 100%;
		max-width: 400px;
		height: auto;
	}
}

@media (max-width: 700px) {
	.what-we-offer-bar {
		font-size: 1rem;
		margin: 20px 0 0 0;
	}

	.offer-title {
		font-size: 1.5rem;
		margin: 0 8px;
	}

	.offer-line {
		width: 40px;
		height: 2px;
	}

	.offer-rect {
		min-height: 140px;
		height: auto;
		margin: 4px 4px;
	}

}

@media (max-width: 1000px) {
	.what-we-offer-cards {
		flex-direction: column;
		align-items: center;
		gap: 18px;
		width: 100%;
		margin: 0 auto;
	}

	.offer-card {
		width: 100%;
		max-width: 400px;
		height: auto;
	}

	.offer-blue-rect {
		position: absolute;
		left: -24px;
		bottom: -95px;
		width: 170px;
		height: 68px;
		background: #B2C8D2;
		mix-blend-mode: multiply;
		box-sizing: border-box;
		flex-direction: column;
	}

	.secondary-logo {
		width: 300px;
		height: auto;
		left: 90px;
		top: -50px;
	}
}
@media (max-width: 900px) {

	/* ========== No Display in Mobile ========== */
	.open-book-image,
	.pastor-image,
	.offer-blue-rect,
	.secondary-logo,
	.info-bar {
		display: none !important;
	}
}

@media (max-width: 510px) {
	.offer-card {
		width: 100%;
		max-width: 250px;
		height: auto;
	}

	.about-us-right,
	.about-us-text {
		align-items: flex-start;
		text-align: left;
		padding-left: 12px;
	}

	.about-us-button,
	.about-us-title,
	.about-us-line {
		margin-left: 12px;
	    text-align: left;
	    align-items: flex-start;
	}

	/* ========== No Display in Mobile ========== */
	.open-book-image,
	.pastor-image,
	.offer-blue-rect,
	.secondary-logo,
	.info-bar {
		display: none !important;
	}

	.pastor-title {
		margin-top: 50px;
	}
}

/* ========== CONTACT SECTION ========== */
.contact-section {
	width: 100%;
	min-height: 500px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	box-sizing: border-box;
	margin: 10px auto;
}

.contact-container {
	position: relative;
	z-index: 1;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.contact-title {
	font-size: 2.5rem;
	font-weight: bold;
	color: #2F3A4C;
	text-transform: uppercase;
	margin-bottom: 5px;
	margin-top: 20px;
}

.contact-message {
	font-size: 1.30rem;
	color: #2F3A4C;
	margin-bottom: 30px;
	background: #fff;
}

.contact-form {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.contact-form-row {
	display: flex;
	justify-content: center;
	gap: 32px;
}

.contact-fields,
.contact-message-field {
	display: flex;
	flex-direction: column;
	gap: 15px;
	min-width: 420px;
	max-width: 800px;
}

.contact-fields input,
.contact-message-field textarea {
	padding: 14px 16px;
	font-size: 1.02rem;
	border: 1.5px solid #B2C8D2;
	border-radius: 8px;
	background: #fff;
	color: #2F3A4C;
}

.contact-message-field textarea {
	font-size: 1.12rem;
	font-family: 'Lato', sans-serif;
	resize: vertical;
	min-height: 102px;
	width: 100%;
	max-width: 400px;
	box-sizing: border-box;
}


.contact-send-btn {
	margin-top: 25px;
	background: #2F3A4C;
	color: #F6F5F1;
	font-size: 1.4rem;
	font-family: 'Lato', sans-serif;
	font-weight: bold;
	border: none;
	border-radius: 30px;
	padding: 5px 45px;
	cursor: pointer;
	transition: background 0.2s, transform 0.2s;
	box-shadow: 0 2px 6px rgba(47, 58, 76, 0.08);
	MARGIN-BOTTOM: 20px;
}

.contact-send-btn:hover {
	background: #1a2230;
	transform: translateY(-2px) scale(1.04);
}

.form-success-message {
	color: #2F3A4C;
	font-size: 1.3rem;
	padding: 15px;
	margin-top: 5px;
	text-align: center;
}

/* CONTACT RESPONSIVE */
@media (max-width: 1000px) {
	.contact-form-row {
		flex-direction: column;
		gap: 18px;
		align-items: center;
		display: flex;
	}

	.contact-fields,
	.contact-message-field {
		max-width: 100%;
		width: 100%;
	}
}

@media (max-width: 700px) {
	.contact-container {
		max-width: 100%;
		padding: 0;
		flex-direction: column;
	}

	.contact-title {
		font-size: 1.8rem;
		margin-top: 18px;
	}

	.contact-message {
		font-size: 1.2rem;
		margin-bottom: 12px;
		margin-left: 5px;
		margin-right: 5px;
		box-sizing: border-box;
	}

	.contact-form-row {
		flex-direction: column;
		gap: 12px;
		align-items: stretch;
		display: flex;
	}

	.contact-fields,
	.contact-message-field,
	.contact-message-field textarea {
		min-width: 0 !important;
		width: 100% !important;
		max-width: 100vw !important;
		box-sizing: border-box;
	}

	.contact-send-btn {
		font-size: 1.5rem;
		padding: 4px 35px;
	}
}

/* ========== GALLERY SECTION ========== */
.gallery-section {
	width: 100%;
	display: flex;
	justify-content: center;
	background: #fff;
	max-width: 1200px;
	margin: 10px auto;
	box-sizing: border-box;
}

.gallery-row {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	box-sizing: border-box;
	display: flex;
	gap: 2px;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}

.gallery-img {
	flex: 1 1 0;
	width: 0;
	height: 290px;
	object-fit: cover;
	transition: transform 0.25s;
	background: #fff;
}

.gallery-img:hover {
	transform: scale(1.025);
}

/* GALLERY RESPONSIVE */
@media (max-width: 900px) {
	.gallery-row {
		gap: 9px;
	}

	.gallery-img {
		height: 160px;
	}
}

@media (max-width: 700px) {
	.gallery-row {
		flex-direction: column;
		gap: 15px;
		padding: 0 10px;
	}

	.gallery-img {
		width: 100%;
		height: 120px;
	}
}

/* ========== FOOTER ========== */
.main-footer {
	background: #2F3A4C;
	color: #fff;
	text-align: left;
	padding: 15px 12px 12px 10px;
	font-family: 'Lato', sans-serif;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	box-sizing: border-box;
	position: relative;
}

.footer-content {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.footer-left {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.footer-logo {
	width: auto;
	height: 80px;
	margin-bottom: 10px;
	margin-right: 150px;
	margin-top: 45px;
	margin-left: 25px;
}

.footer-family {
	font-family: "Allura", cursive;
	font-size: 24px;
	color: #fff;
	margin-left: 35px;
}

.footer-right {
	flex: 1 1 0;
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
}

.footer-links-touch {
	display: flex;
	align-items: flex-start;
}

.footer-links {
	min-width: 130px;
}

.footer-section-title {
	font-family: "Allura", cursive;
	font-size: 24px;
	color: #fff;
	letter-spacing: 1px;
	margin-top: 10px;
}

.footer-links ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-links li {
	margin-bottom: 5px;
}

.footer-links a {
	color: #fff;
	text-decoration: none;
	font-family: 'Lato', sans-serif;
	font-size: 1.0rem;
}

.footer-links a:hover,
.apply-now-footer {
	color: #F6F5F1;
	text-decoration: none;
}

.footer-divider {
	width: 2px;
	background: #B2C8D2;
	min-height: 230px;
	margin: 0 44px 0 -10px;
}

.footer-get-in-touch {
	min-width: 200px;
}

.footer-contact-info {
	font-size: 1.03rem;
	color: #fff;
	margin-top: 10px;
}

.footer-contact-info div {
	margin-bottom: 8px;
}

.footer-heart {
	color: #2F3A4C !important;
	font-size: 1.3em;
	vertical-align: middle;
	margin: 0 4px 0 4px;
}

.footer-designer {
	font-family: "Allura", cursive;
	font-size: 18px;
	color: #2F3A4C;
	letter-spacing: 1px;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 2px;
}

.footer-bar {
	background: #B2C8D2;
	color: #2F3A4C;
	text-align: center;
	font-family: 'Lato', sans-serif;
	padding: 15px 12px 12px 10px;
	font-size: 15px;
	letter-spacing: 0.02em;
	max-width: 1200px;
	margin: 10px auto;
	box-sizing: border-box;
	width: 100%;
}

.footer-bar a.footer-legal-link {
	color: #2F3A4C !important;
	text-decoration: underline;
	font-family: 'Lato', sans-serif;
	font-size: 1em;
	margin: 0 2px;
	transition: color 0.2s;
	display: inline;
}

.footer-bar a.footer-legal-link:hover {
	color: #8c735d !important;
}

@media (max-width: 1000px) {
	.footer-content {
		flex-direction: column;
		align-items: flex-start;
		padding: 0 5px;
		margin-left: 15px;
	}

	.footer-logo {
		margin-bottom: 7px;
		margin-top: 5px;
		margin-left: 5px;
	}

	.footer-family {
		font-size: 1.1rem;
		margin-left: 5px;
		margin-bottom: 10px;
	}

	.footer-links-touch {
		flex-direction: column;
		gap: 18px;
	}

	.footer-divider {
		display: none;
	}

	.footer-right {
		width: 100%;
		align-items: flex-start;
	}
}

@media (max-width: 700px) {
	.main-footer {
		padding: 18px 0 10px 0;
	}

	.footer-logo {
		margin-bottom: 7px;
		margin-top: 5px;
		margin-left: 5px;
	}

	.footer-family {
		font-size: 1.1rem;
		margin-left: 5px;
	}

	.footer-bar {
		font-size: 0.93rem;
	}

	.footer-contact-info {
		white-space: normal !important;
		word-break: break-word;
		overflow-wrap: break-word;
	}
}

/* ========== CONSENT BANNER ========== */
#consent-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100vw;
	background: #2F3A4C;
	color: #fff;
	padding: 15px 0;
	z-index: 2000;
	text-align: center;
	font-size: 1rem;
}

#consent-banner a {
	color: #B2C8D2;
	text-decoration: underline;
	margin: 0 4px;
}

#consent-banner button {
	background: #B09375;
	color: #fff;
	border: none;
	padding: 7px 22px;
	border-radius: 5px;
	margin-left: 15px;
	cursor: pointer;
	font-size: 1em;
	transition: background 0.18s;
}

#consent-banner button:hover {
	background: #8c735d;
}