.image-container {
	position: relative;
	display: block;
}
.image-container img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
}
.floating-header,
.image-container p {
	position: absolute;
	left: 10%;
	right: 10px; /* Ensures wrapping before touching the right edge */
	color: white !important;
	text-align: left;
	z-index: 10;
	word-wrap: break-word;
	white-space: normal;
	max-width: calc(100% - 20px); /* Prevents text from reaching the right edge */
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}
.floating-header {
	top: 10%;
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 20px;
}
.image-container p {
	top: 27%;
	font-size: 16px;
}
.floating-header-no-wrap {
	top: 20%;
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 20px;
}
.floating-header-no-wrap,
.image-container p {
	position: absolute;
	left: 10%;
	right: 10px;
	color: white !important;
	text-align: left;
	z-index: 10;
	max-width: calc(100% - 20px);
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}
.no-wrap-text {
	position: absolute;
	top: 22%;
	left: 10%;
	color: white !important;
	text-align: left;
	z-index: 10;
	white-space: nowrap;
}
/* IMAGE CONTAINER STYLES FOR THE DASHBOARD SIDE PANEL */
.image-container2 {
	position: relative;
	display: block;
}
.image-container2 img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
}
.floating-header2,
.image-container2 p {
	position: absolute;
	left: 10%;
	right: 10px;
	color: white !important;
	text-align: left;
	z-index: 10;
	word-wrap: break-word;
	white-space: normal;
	max-width: calc(100% - 20px);
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}
.floating-header2 {
	top: 10%;
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 20px;
}
.image-container2 p {
	top: 27%;
	font-size: 14px;
}



/* FIRST FLOATING BUTTON - WHITE BACKGROUND WITH ORANGE TEXT */
.floating-button {
	position: absolute;
	bottom: 10%;
	left: 10%;
	background-color: white;
	color: #E87722;
	border: 2px solid #E87722;
	padding: 10px 20px;
	cursor: pointer;
	border-radius: 5px;
	font-size: 16px;
	font-weight: bold;
	z-index: 10;
	transition: all 0.3s ease-in-out;
}
.floating-button:hover {
	box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
	transform: scale(1.05);
}
/* SECOND FLOATING BUTTON - ORANGE BACKGROUND WITH WHITE TEXT */
.floating-button-alt {
	position: absolute;
	bottom: 10%;
	left: 10%;
	background-color: #E87722;
	color: white;
	border: 2px solid #E87722;
	padding: 10px 20px;
	cursor: pointer;
	border-radius: 5px;
	font-size: 16px;
	font-weight: bold;
	z-index: 10;
	transition: all 0.3s ease-in-out;
}
.floating-button-alt:hover {
	box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
	transform: scale(1.05);
}
@media screen and (max-width: 768px) {
	.image-container {
		display: flex;
		flex-direction: column;
		align-items: center;
		text-align: center;
		position: relative;
	}

	.floating-header,
	.image-container p {
		position: static; /* Removes absolute positioning */
		max-width: 100%;
		padding: 10px;
		text-align: center;
	}

	.image-container img {
		order: 2; /* Places image in the middle */
	}

	.image-container a {
		order: 3; /* Moves button below the image */
		margin-top: 10px;
		text-align: center;
	}

	.floating-header {
		order: 1; /* Moves header above the image */
		font-size: 20px;
		margin-bottom: 10px;
	}

	.image-container p {
		order: 1; /* Moves paragraph above the image */
		font-size: 14px;
	}
}
@media screen and (max-width: 768px) {
	.row {
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.col {
		width: 100% !important; /* Ensures full-width stacking */
	}
}


/*FOOTER STYLES*/
.footer {
	color: white;
	text-align: center;
	padding: 20px 0;
	font-family: Arial, sans-serif;
}
.footer-top {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
	margin-bottom: 20px;
}
.footer-top .logo {
	height: 50px;
}
.footer-top .social-icons a img {
	width: 30px;
	height: 30px;
	background: white;
	border-radius: 50%;
	padding: 5px;
}
.footer-nav {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	font-size: 16px;
	margin-bottom: 15px;
}
.footer-nav a {
	color: white;
	text-decoration: none;
	font-weight: bold;
}
.separator {
	padding: 0 20px;
	color: white;
}
.footer-divider {
	border: 0;
	height: 1px;
	background: white;
	width: 80%;
	margin: 10px auto;
}
.footer-bottom {
	display: flex;
	justify-content: center;
	gap: 40px;
	font-size: 14px;
	margin-top: 10px;
}
.privacy-policy {
	color: white;
	text-decoration: none;
}
.centered-row {
	justify-content: center;
}

.card-img {
	height: 125px !important;
}