	@charset "UTF-8";
	/* STYLES */
	/* CONTENTS
	* variables
	* basic elements (html, body, etc)
	* text elements (h1-h6, p, etc)
	* helper classes (wrapper, etc)
	* header
	* footer
	* blocks
	*/
	/* VARIABLES */
	:root {
	--color__orange: #FF7A00;
	--color__dark-orange: #FF4D00;
	--color__black: #090909;
	--color__grey: #FFFCEC;
	--color__gray: var(--color__grey);
	--color__white: #ffffff;
	--color__main: var(--color__orange);
	--font: "Red Hat Display", sans-serif;
	--grid-gap: 30px;
	--transition: all 250ms ease;
}

	/* BASIC ELEMENTS */
	html, body {
	height: 100%;
	margin: 0;
	padding: 0;
	overflow: auto;
	background: var(--color__grey);
}

	#smooth-wrapper {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	z-index: 10;
}

	#smooth-content {
	position: relative;
	width: 100%;
	min-height: 100vh;
	will-change: transform;
}

	img {
	max-width: 100%;
}

	/* TEXT ELEMENTS */
	h1, .h1 {
	color: var(--color__white);
	font-family: var(--font);
	font-size: clamp(32px, 8vw, 64px); /* Responsive: 32px mobile to 64px desktop */
	font-weight: 900;
	text-transform: uppercase;
	padding-top: clamp(15px, 3vw, 30px); /* Responsive padding */
	line-height: 1.1;
}

	h2, .h2 {
	color: var(--color__black);
	font-family: var(--font);
	font-size: clamp(28px, 7vw, 64px); /* Responsive: 28px mobile to 64px desktop */
	font-weight: 900;
	text-transform: uppercase;
	padding-top: clamp(15px, 3vw, 30px);
	line-height: 1.1;
}

	h3, .h3 {
	color: var(--color__main);
	font-family: var(--font);
	font-size: clamp(24px, 5vw, 42px); /* Responsive: 24px mobile to 42px desktop */
	font-weight: 900;
	line-height: 1.2;
}

	h4, .h4,
	h5, .h5,
	h6, .h6 {
	color: var(--color__black);
	font-family: var(--font);
	font-size: clamp(20px, 3.5vw, 28px); /* Responsive: 20px mobile to 28px desktop */
	font-weight: 900;
	text-transform: uppercase;
	padding-top: clamp(15px, 3vw, 30px);
	line-height: 1.3;
}

	p {
	color: var(--color__black);
	font-family: var(--font);
	font-size: clamp(16px, 2.5vw, 21px); /* Responsive: 16px mobile to 21px desktop */
	font-weight: 400;
	padding-top: clamp(15px, 3vw, 30px);
	line-height: 1.6;
}

	label, input, select, textarea {
	color: var(--color__black);
	font-family: var(--font);
	font-size: clamp(16px, 2.5vw, 21px); /* Responsive: 16px mobile to 21px desktop */
	font-weight: 400;
	padding-top: clamp(15px, 3vw, 30px);
	line-height: 1.5;
}

	a {
	color: var(--color__main);
	font: inherit;
	text-decoration: none;
	transition: color 0.3s ease;
}

	span {
	font: inherit;
}

	strong {
	font: inherit;
	font-weight: 900;
	color: var(--color__main);
	font-size: clamp(24px, 5vw, 42px); /* Responsive: 24px mobile to 42px desktop */
	line-height: 1.2;
}

	/* Mobile-specific adjustments */
	@media (max-width: 480px) {
	h1, .h1,
	h2, .h2 {
		word-break: break-word; /* Prevent overflow on small screens */
		hyphens: auto;
}
	/* Reduce spacing on very small screens */
	h1, .h1,
	h2, .h2,
	h4, .h4,
	h5, .h5,
	h6, .h6,
	p,
	label, input, select, textarea {
		padding-top: 10px;
}
.btn {
		font-size: 16px !important;
		border: none;
}
}
	/* Tablet adjustments */
	@media (min-width: 768px) and (max-width: 1023px) {
	/* Maintain good proportions on tablets */
	h1, .h1 {
		font-size: clamp(40px, 6vw, 56px);
}
	h2, .h2 {
		font-size: clamp(36px, 5.5vw, 56px);
}
.btn {
		font-size: 16px !important;
}
}
	/* HELPERS */
.wrapper {
	box-sizing: border-box;
	padding: 0 30px;
	max-width: 1600px;
	margin: auto;
	width: 100%;
}

	/* HEADER */
	header {
	background: var(--color__white);
	box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.25);
	position: relative;
	z-index: 5000;
	/* Mobile - responsive */
	/* Mobile logo - hidden by default, shown only on mobile */
	/* MOBILE RESPONSIVE STYLES */
	/* Demo content */
}
	header .header__logo {
	display: none;
}
	header .header__utility {
	padding: 15px 0;
	background: var(--color__main);
	width: 100%;
	position: relative;
	z-index: 5001;
}
	header .header__utility .wrapper {
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
	align-items: center;
}
	header .header__utility p, header .header__utility a {
	padding: 0;
	font-size: 18px;
	font-weight: 400;
	color: var(--color__white);
}
	header .header__utility a {
	font-weight: 900;
	text-decoration: none;
	transition: color 0.3s ease;
}
	header .header__utility a:hover {
	color: #5c5348;
}
	header .header__menu {
	padding: 30px 0;
}
	header .header__menu nav .menu__items {
	list-style-type: none;
	display: flex;
	flex-flow: row wrap;
	justify-items: space-between;
	align-items: center;
}
	header .header__menu nav .menu__items .menu__item {
	text-align: center;
	flex: 1 0 auto;
	position: relative;
}
	header .header__menu nav .menu__items .menu__item a {
	color: var(--color__black);
	text-decoration: none;
	text-transform: uppercase;
	display: inline-block;
	transition: all 0.3s ease;
}
	header .header__menu nav .menu__items .menu__item::before {
	content: "";
	position: absolute;
	top: -20px;
	right: 20%;
	width: 20px;
	height: 20px;
	background-image: url("/assets/images/frontend/feuille-orange.svg");
	background-size: contain;
	background-repeat: no-repeat;
	opacity: 0;
	transition: opacity 0.3s ease, transform 0.4s ease;
	pointer-events: none;
}
	header .header__menu nav .menu__items .menu__item:hover::before, header .header__menu nav .menu__items .menu__item.active::before {
	opacity: 1;
	transform: translateY(-5px) translateX(-5px) scale(1) rotate(10deg);
	animation: floatIcon 1.5s ease-in-out infinite;
}
	@keyframes floatIcon {
	0% {
		transform: translateY(0) translateX(0) scale(1) rotate(0);
}
	50% {
		transform: translateY(-8px) translateX(-8px) scale(1) rotate(5deg);
}
	100% {
		transform: translateY(0) translateX(0) scale(1) rotate(0);
}
}
	header .header__menu nav .menu__items .menu__item.menu__item--logo {
	max-width: 240px;
	transition: transform 0.3s ease, filter 0.3s ease;
	display: inline-block;
	/* Hover animation */
}
	header .header__menu nav .menu__items .menu__item.menu__item--logo:hover::before, header .header__menu nav .menu__items .menu__item.menu__item--logo.active::before, header .header__menu nav .menu__items .menu__item.menu__item--logo:active::before {
	display: none;
}
	header .header__menu nav .menu__items .menu__item.menu__item--logo a {
	display: block;
}
	header .header__menu nav .menu__items .menu__item.menu__item--logo a img {
	display: block;
	width: 100%;
	transition: transform 0.3s ease, filter 0.3s ease;
}
	header .header__menu nav .menu__items .menu__item.menu__item--logo:hover a img {
	transform: scale(1.05) rotate(2deg); /* Slight scale and tilt */
	filter: brightness(1.1); /* Optional subtle brightness increase */
}
	header .header__menu nav .menu__items .menu__item:last-child a {
	color: var(--color__main);
	font-weight: 700;
}
	header .header__menu nav .header__button {
	display: none;
}
	header .mobile-menu-toggle {
	display: none; /* Hidden by default */
	flex-direction: column;
	justify-content: space-around;
	width: 25px;
	height: 21px;
	margin-left: 15px;
	background: transparent;
	border: none;
	cursor: pointer;
	z-index: 9999;
	position: fixed;
	top: 0;
	right: 0;
	z-index: 9999;
}
	header .mobile-menu-toggle span {
	width: 100%;
	height: 3px;
	background-color: #000; /* Add color so they are visible */
	border-radius: none;
	transition: all 0.3s ease-in-out;
	transform-origin: center;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
	header .mobile-menu-toggle span:nth-child(1) {
	transform: translate(-50%, calc(-50% - 7px));
}
	header .mobile-menu-toggle span:nth-child(3) {
	transform: translate(-50%, calc(-50% + 7px));
}
	header .mobile-menu-toggle.active span:nth-child(1) {
	transform: translate(-50%, -50%) rotate(-45deg);
}
	header .mobile-menu-toggle.active span:nth-child(2) {
	opacity: 0;
}
	header .mobile-menu-toggle.active span:nth-child(3) {
	transform: translate(-50%, -50%) rotate(45deg);
}
	header .header__menu .mobile-logo {
	display: none;
}
	@media (max-width: 1200px) {
	header {
		/* Show mobile logo */
		/* Adjust mobile menu toggle position to accommodate logo */
		/* Header utility mobile adjustments */
		/* Header menu mobile adjustments */
		/* Show mobile toggle */
		/* Logo positioning for mobile */
		/* Mobile menu overlay */
		/* Hide logo in mobile menu */
		/* Mobile menu items styling */
		/* Disable hover effects on mobile */
		/* Enhanced last menu item for mobile */
}
	header .header__menu {
		height: 120px;
}
	header .header__menu .mobile-logo {
		display: block;
		position: absolute;
		left: 20px;
		top: 50%;
		transform: translateY(-50%);
		z-index: 1001; /* Above mobile menu */
}
	header .header__menu .mobile-logo img {
		width: 200px;
		height: auto;
}
	header .mobile-menu-toggle {
		position: absolute;
		right: 20px;
		top: 50%;
		transform: translateY(-50%);
}
	header .header__utility {
		padding: 10px 0;
}
	header .header__utility .wrapper {
		flex-direction: column;
		gap: 5px;
		text-align: center;
}
	header .header__utility p,
	header .header__utility a {
		font-size: 14px;
}
	header .header__menu {
		padding: 15px 0;
		position: relative;
}
	header .mobile-menu-toggle {
		display: flex;
}
	header .header__menu nav .menu__items .menu__item.menu__item--logo {
		position: absolute;
		left: 20px;
		top: 50%;
		transform: translateY(-50%);
		max-width: 120px;
		flex: none;
}
	header .header__menu nav .menu__items {
		position: fixed;
		top: 0;
		left: -100%;
		width: 100%;
		height: 100vh;
		background: var(--color__white);
		flex-direction: column;
		justify-content: center;
		align-items: center;
		gap: 30px;
		transition: left 0.3s ease;
		z-index: 1000;
		box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
}
	header .header__menu nav .menu__items.mobile-active {
		left: 0;
}
	header .header__menu nav .menu__items.mobile-active .menu__item.menu__item--logo {
		display: none;
}
	header .header__menu nav .menu__items .menu__item {
		flex: none;
		margin: 10px 0;
}
	header .header__menu nav .menu__items .menu__item a {
		font-size: 18px;
		padding: 15px 30px;
		transition: all 0.3s ease;
		min-width: 200px;
		text-align: center;
}
	header .header__menu nav .menu__items .menu__item:hover a {
		background: rgba(44, 85, 48, 0.1);
		transform: translateY(-2px);
}
	header .header__menu nav .menu__items .menu__item:active::before,
	header .header__menu nav .menu__items .menu__item:hover::before {
		display: none;
}
	header .header__menu nav .menu__items .menu__item:last-child a {
		background: var(--color__main);
		color: var(--color__white);
		font-weight: 700;
		border: none;
		border-top-left-radius: 25px;
		border-bottom-right-radius: 25px;
		transition: transform 0.3s ease;
}
	header .header__menu nav .menu__items .menu__item:last-child:hover a {
		color: var(--color__white);
		transform: translateY(-3px) scale(1.05);
		box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}
}
	@media (max-width: 480px) {
	header .header__menu {
		height: 90px;
}
	header .header__menu .mobile-logo img {
		width: 100px;
}
	header .header__utility p,
	header .header__utility a {
		font-size: 12px;
}
	header .header__menu nav .menu__items .menu__item.menu__item--logo {
		max-width: 100px;
}
	header .header__menu nav .menu__items .menu__item a {
		font-size: 16px;
		min-width: 180px;
		padding: 12px 25px;
}
}
	header .demo-content {
	margin-top: 20px;
	padding: 20px;
	text-align: center;
}

	/* FOOTER */
.footer {
	display: flex;
	flex-direction: column;
}
	@media (max-width: 1400px) {
.footer .footer {
		padding: 60px 0 0 0 !important;
}
}
.footer .footer__main {
	padding-top: 30px;
	padding-bottom: 30px;
}
.footer .footer__main h2 {
	color: var(--color__main);
	font-size: 21px;
	margin-bottom: 30px;
}
.footer .footer__main h2:not(:first-child) {
	margin-top: 30px;
}
.footer .footer__main ul {
	list-style-type: none;
	padding-left: 0;
}
.footer .footer__main ul li {
	font-size: 16px;
	margin-bottom: 10px;
}
.footer .footer__main ul li a {
	text-decoration: none;
	color: var(--color__black);
	transition: var(--transition);
}
.footer .footer__main ul li a:hover {
	color: var(--color__main);
}
.footer .footer__main ul.footer__socials li a {
	font-size: 30px;
	color: var(--color__main);
}
.footer .footer__main ul.footer__socials li a:hover {
	color: var(--color__black);
}
.footer .footer__main > div .footer__logo {
	display: block;
	margin-bottom: 45px;
}
.footer .footer__main > div .footer__logo img {
	max-width: 360px;
	width: 100%;
	transition: all 0.3s ease;
}
.footer .footer__main > div .footer__logo img:hover {
	transform: scale(1.05);
}
.footer .footer__main > div ul {
	display: flex;
	flex-direction: column;
	gap: 15px;
}
.footer .footer__main > div:last-child ul {
	flex-direction: row;
	justify-content: space-between;
	flex-wrap: wrap;
}
	@media (max-width: 480px) {
.footer .footer__main > div:last-child ul {
		flex-direction: column;
}
}
	@media (max-width: 768px) {
.footer .footer__main > div:last-child ul {
		justify-content: center;
}
}
.footer .footer__main > div .footer__copyright {
	font-size: 16px;
}
.footer .footer__main img {
	transition: all 0.3s ease;
}
.footer .footer__main img:hover {
	transform: translateY(-2px) scale(1.02);
}
	@media (max-width: 768px) {
.footer .footer__main .wrapper {
		display: block;
}
.footer .footer__main .wrapper p, .footer .footer__main .wrapper ul li {
		text-align: center;
}
.footer .footer__main .footer__main {
		display: flex;
		flex-direction: column;
}
}
.footer .footer__utility {
	background: var(--color__main);
	padding: 10px 0;
}
.footer .footer__utility .wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.footer .footer__utility .wrapper > a {
	background: var(--color__white);
	color: var(--color__black);
	border-radius: 15px;
	padding: 5px 20px;
	text-decoration: none;
	font-size: 18px;
}
.footer .footer__utility .wrapper > a:hover {
	transform: translateY(-3px) scale(1.025);
}
.footer .footer__utility .wrapper p {
	align-self: flex-end;
	padding: 0;
	color: var(--color__white);
	font-size: 21px;
}
.footer .footer__utility .wrapper p a {
	color: var(--color__white);
	text-decoration: none;
	font-weight: 700;
	transition: color 0.3s ease;
}
.footer .footer__utility .wrapper p a:hover {
	color: #5c5348;
}
	@media (max-width: 769px) {
.footer .footer__utility .wrapper {
		flex-wrap: nowrap;
}
.footer .footer__utility .wrapper p {
		font-size: 16px;
		text-align: center;
}
}

	/* CAPTCHA */
	body > div:has(.grecaptcha-badge) {
	position: fixed;
	z-index: 50;
}

	/* BLOCKS */
.block:not(.block__header-banner) {
	margin: 120px auto;
}
	@media (max-width: 768px) {
.block:not(.block__header-banner) {
		margin: 75px auto;
}
}

.block {
	/* BLOCK - HEADER-BANNIER */
	/* BLOCK - SIMPLE-TEXTE */
	/* BLOCK - TEXT-IMAGE */
	/* BLOCK - COLUMNS */
	/* BLOCK - TEXT-BACKGROUND */
	/* BLOCK - TEXT-ICONS */
	/* BLOCK - FORM-BACKGROUND */
	/* Tablet breakpoint */
	/* Mobile breakpoint */
	/* Small mobile breakpoint */
	/* BLOCK - CONTACT-FORM */
}
.block ul li {
	color: var(--color__black);
	font-family: var(--font);
	font-size: 21px;
	font-weight: 900;
	text-transform: uppercase;
	line-height: 1.6;
	padding-left: 30px;
	list-style-type: none; /* Remove default bullets */
	position: relative; /* Needed for positioning the checkmark */
}
.block ul li::before {
	content: "✓  "; /* You can also use ✔ or any icon */
	position: absolute;
	left: -10px;
	top: 0;
	width: 30px; /* Same as padding-left to align properly */
	height: 1em;
	display: inline-block;
	text-align: center;
	color: var(--color__main);
	font-weight: 900;
}
.block .btn {
	font-size: 21px;
	background: var(--color__main);
	border-top-left-radius: 25px;
	border-bottom-right-radius: 25px;
	border: none;
	transition: background 0.3s ease, transform 0.3s ease; /* Added background to transition */
	cursor: pointer;
}
.block .btn:hover {
	color: var(--color__white);
	background: var(--color__dark-orange);
	transform: translateY(-3px) scale(1.05);
}
.block.block__header-banner {
	height: 400px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.block.block__header-banner h1 {
	text-align: center;
	text-shadow: 0px 3px 30px rgba(0, 0, 0, 0.65);
}
.block.block__simple-text {
	margin: 60px auto;
	text-align: center;
	/* Responsive Adjustments */
}
.block.block__simple-text p {
	width: 70%;
	margin: 0 auto;
}
.block.block__simple-text p:has(a) {
	text-transform: uppercase;
	font-size: 28px;
	font-weight: 900;
	line-height: 1.2;
}
.block.block__simple-text .link {
	text-decoration: underline;
	text-underline-offset: 5px;
}
.block.block__simple-text .link:hover {
	color: var(--color__dark-orange);
	transition: color 0.3s ease;
}
	@media (max-width: 768px) {
.block.block__simple-text p {
		width: 100%;
		margin: 0 auto;
}
}
.block.block__text-image {
	/* Responsive Adjustments */
}
.block.block__text-image.txt-pos__left .col-grid {
	grid-row-gap: 15px;
}
.block.block__text-image.txt-pos__left .text-image__image {
	/* Center the image within its grid column */
	display: flex;
	justify-content: center;
	align-items: center;
}
.block.block__text-image.txt-pos__left .text-image__image img {
	max-width: 100%;
	height: auto;
}
.block.block__text-image.txt-pos__right {
	direction: rtl;
	/* Only reset direction for specific elements that need LTR */
	/* Right-align text elements */
}
.block.block__text-image.txt-pos__right .text-image__image {
	direction: ltr;
	/* Center the image within its grid column */
	display: flex;
	justify-content: center;
	align-items: center;
}
.block.block__text-image.txt-pos__right .text-image__image img {
	max-width: 100%;
	height: auto;
}
.block.block__text-image.txt-pos__right .text-image__text,
.block.block__text-image.txt-pos__right p:last-child:has(.btn) {
	text-align: right !important;
	direction: ltr; /* Keep text readable but aligned right */
}
.block.block__text-image.txt-pos__right ul {
	direction: ltr; /* RTL makes ::before appear on the right */
}
.block.block__text-image.txt-pos__right ul li {
	color: var(--color__black);
	font-family: var(--font);
	font-size: 21px;
	font-weight: 900;
	text-transform: uppercase;
	line-height: 1.6;
	padding-right: 40px; /* Space for checkmark on the right */
	list-style-type: none;
	position: relative;
	white-space: nowrap;
	direction: rtl; /* Keep text readable left-to-right */
}
.block.block__text-image.txt-pos__right ul li::before {
	content: "✓";
	color: var(--color__main);
	font-weight: 900;
	font-size: 21px;
	position: absolute;
	right: 0; /* Position on the right */
	top: 0;
	width: 30px;
	text-align: center;
}
	@media (max-width: 768px) {
.block.block__text-image .text-image__image,
.block.block__text-image .text-image__text {
		width: 100%;
		margin: 0 auto;
}
.block.block__text-image.txt-pos__left, .block.block__text-image.txt-pos__right {
		direction: ltr;
		/* Only reset direction for specific elements that need LTR */
		/* Right-align text elements */
}
.block.block__text-image.txt-pos__left .text-image__image, .block.block__text-image.txt-pos__right .text-image__image {
		margin: 60px auto 0 auto;
}
.block.block__text-image.txt-pos__left .text-image__text,
.block.block__text-image.txt-pos__left p:last-child:has(.btn), .block.block__text-image.txt-pos__right .text-image__text,
.block.block__text-image.txt-pos__right p:last-child:has(.btn) {
		text-align: center !important;
		direction: ltr; /* Keep text readable but aligned right */
}
.block.block__text-image.txt-pos__left ul, .block.block__text-image.txt-pos__right ul {
		direction: rtl; /* RTL makes ::before appear on the right */
}
.block.block__text-image.txt-pos__left ul li, .block.block__text-image.txt-pos__right ul li {
		color: var(--color__black);
		font-family: var(--font);
		font-size: 16px;
		font-weight: 900;
		text-transform: uppercase;
		line-height: 1.6;
		padding-right: 40px; /* Space for checkmark on the right */
		list-style-type: none;
		position: relative;
		white-space: wrap;
		direction: ltr; /* Keep text readable left-to-right */
		text-align: left;
}
.block.block__text-image.txt-pos__left ul li::before, .block.block__text-image.txt-pos__right ul li::before {
		content: "✓";
		color: var(--color__main);
		font-weight: 900;
		font-size: 16px;
		position: absolute;
		right: 0; /* Position on the right */
		top: 0;
		width: 30px;
		text-align: center;
}
.block.block__text-image .text-image__text h2, .block.block__text-image .text-image__text p {
		text-align: center;
}
.block.block__text-image .text-image__image {
		max-width: 100%;
		height: auto;
}
}
.block.block__columns h2, .block.block__columns p {
	text-align: center;
}
.block.block__columns h2 + p {
	width: 100%;
}
.block.block__columns p {
	width: 50%;
	margin: 0 auto;
}
.block.block__columns .columns__columns {
	margin-top: 30px;
}
.block.block__columns .columns__columns a {
	text-decoration: none;
}
.block.block__columns .columns__columns a img {
	max-height: 400px;
}
.block.block__columns .columns__columns a h3 {
	text-align: center;
	font-size: 21px;
}
.block.block__columns .columns__columns a img {
	transition: transform 0.3s ease;
}
.block.block__columns .columns__columns a:hover img {
	transform: translateY(-3px) scale(1.05);
}
.block.block__columns .columns__columns .col-span__4 {
	background-image: url("../images/frontend/feuille-orange.svg");
	background-size: 50%;
	background-position: center top;
	background-repeat: no-repeat;
}
	@media (max-width: 768px) {
.block.block__columns .columns__columns {
		margin-top: 60px;
}
.block.block__columns .columns__columns h3 {
		text-align: center;
		font-size: 21px;
}
}
.block.block__text-background {
	padding: 40px 15px; /* Much less padding for mobile */
	/* Tablet styles */
	/* Desktop styles */
	/* Large desktop styles */
	/* Extra small mobile devices */
	/* Handle background image responsiveness */
}
.block.block__text-background .bg-orange {
	width: 95%; /* Wider on mobile for better space usage */
	margin: 0 auto;
	padding: 30px 20px; /* Significantly reduced padding for mobile */
	text-align: center;
	background-color: rgba(255, 122, 0, 0.75);
}
.block.block__text-background .bg-orange h2 {
	color: var(--color__white);
	font-size: clamp(1.5rem, 4vw, 2.5rem); /* Responsive font size */
	margin-bottom: 1rem;
}
.block.block__text-background .bg-orange p, .block.block__text-background .bg-orange p strong {
	color: var(--color__white);
	font-size: clamp(1rem, 2.5vw, 1.2rem); /* Responsive font size */
	line-height: 1.6;
}
.block.block__text-background .btn {
	font-size: clamp(16px, 2.5vw, 21px); /* Responsive button font size */
	font-weight: 900;
	color: var(--color__dark-orange);
	background: var(--color__white);
	border-top-left-radius: 25px;
	border-bottom-right-radius: 25px;
	transition: background 0.3s ease, transform 0.3s ease;
	padding: 12px 24px; /* Added padding for better touch targets */
	border: none;
	cursor: pointer;
	display: inline-block;
	text-decoration: none;
	margin-top: 1rem;
}
.block.block__text-background .btn:hover {
	color: var(--color__white);
	background: #5c5348;
	transform: translateY(-3px) scale(1.05);
}
	@media (min-width: 768px) {
.block.block__text-background {
		padding: 100px 40px;
}
.block.block__text-background .bg-orange {
		width: 85%;
		padding: 75px 80px;
}
}
	@media (min-width: 1024px) {
.block.block__text-background {
		padding: 120px 60px;
}
.block.block__text-background .bg-orange {
		width: 80%;
		padding: 90px 120px;
}
}
	@media (min-width: 1200px) {
.block.block__text-background {
		padding: 120px;
}
.block.block__text-background .bg-orange {
		padding: 90px 180px;
}
}
	@media (max-width: 480px) {
.block.block__text-background {
		padding: 20px 10px; /* Minimal padding on very small screens */
}
.block.block__text-background .bg-orange {
		width: 98%;
		padding: 20px 15px; /* Very compact padding */
}
.block.block__text-background .btn {
		font-size: 16px;
		padding: 10px 20px;
		/* Reduce hover effects on mobile for better touch experience */
}
.block.block__text-background .btn:hover {
		transform: translateY(-1px) scale(1.02);
		box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}
}
.block.block__text-background[style*=background-image] {
	background-attachment: scroll; /* Better performance on mobile */
}
	@media (min-width: 1024px) {
.block.block__text-background[style*=background-image] {
		background-attachment: fixed; /* Parallax effect on desktop */
}
}
.block.block__text-icons {
	/* Icons Section */
	/* Dynamic layout based on number of icons */
	/* Fallback for browsers that don't support :has() */
	/* Responsive */
}
.block.block__text-icons .text-icons__text h3 {
	padding-top: 75px;
	font-size: 21px;
	text-transform: uppercase;
}
.block.block__text-icons .text-icons__icons {
	padding-top: 30px;
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	justify-content: center;
	align-content: flex-start;
}
.block.block__text-icons .text-icons__icons:has(.text-icons__icon:nth-child(2):not(:nth-child(3))) {
	justify-content: center;
}
.block.block__text-icons .text-icons__icons:has(.text-icons__icon:nth-child(3):not(:nth-child(4))) {
	justify-content: space-between;
}
.block.block__text-icons .text-icons__icons:has(.text-icons__icon:nth-child(4):not(:nth-child(5))) {
	justify-content: space-between;
}
.block.block__text-icons .text-icons__icons:has(.text-icons__icon:nth-child(4):not(:nth-child(5))) .text-icons__icon {
	flex: 0 0 calc(50% - 15px);
}
.block.block__text-icons .text-icons__icons:has(.text-icons__icon:nth-child(5):not(:nth-child(6))) {
	justify-content: space-between;
}
.block.block__text-icons .text-icons__icons:has(.text-icons__icon:nth-child(5):not(:nth-child(6))) .text-icons__icon:nth-child(-n+3) {
	flex: 0 0 calc(33.333% - 20px);
}
.block.block__text-icons .text-icons__icons:has(.text-icons__icon:nth-child(5):not(:nth-child(6))) .text-icons__icon:nth-child(n+4) {
	flex: 0 0 calc(50% - 15px);
	margin-top: 10px;
}
	@supports not (selector(:has(*))) {
.block.block__text-icons .text-icons__icons {
		justify-content: center;
}
.block.block__text-icons .text-icons__icon {
		flex: 0 0 calc(50% - 15px);
}
}
.block.block__text-icons .text-icons__icon {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	text-align: center;
	padding: 30px;
}
.block.block__text-icons .text-icons__icon img {
	max-height: 130px;
}
.block.block__text-icons .text-icons__icon span {
	padding-top: 30px;
	font-size: 21px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	line-height: 1.2;
}
	@media (max-width: 768px) {
.block.block__text-icons .text-icons__text {
		text-align: center;
}
.block.block__text-icons .text-icons__icons {
		justify-content: center;
}
.block.block__text-icons .text-icons__icons .text-icons__icon,
.block.block__text-icons .text-icons__icons:has(.text-icons__icon:nth-child(4):not(:nth-child(5))) .text-icons__icon,
.block.block__text-icons .text-icons__icons:has(.text-icons__icon:nth-child(5):not(:nth-child(6))) .text-icons__icon:nth-child(-n+3),
.block.block__text-icons .text-icons__icons:has(.text-icons__icon:nth-child(5):not(:nth-child(6))) .text-icons__icon:nth-child(n+4) {
		flex: 0 0 calc(50% - 15px);
		margin-top: 0;
}
.block.block__text-icons .text-icons__icons {
		gap: 20px;
}
.block.block__text-icons .text-icons__text h2 {
		font-size: 2rem;
}
}
	@media (max-width: 480px) {
.block.block__text-icons .text-icons__icons .text-icons__icon,
.block.block__text-icons .text-icons__icons:has(.text-icons__icon:nth-child(4):not(:nth-child(5))) .text-icons__icon,
.block.block__text-icons .text-icons__icons:has(.text-icons__icon:nth-child(5):not(:nth-child(6))) .text-icons__icon:nth-child(-n+3),
.block.block__text-icons .text-icons__icons:has(.text-icons__icon:nth-child(5):not(:nth-child(6))) .text-icons__icon:nth-child(n+4) {
		flex: 0 0 100%;
		margin-top: 0;
}
.block.block__text-icons .text-icons__icons {
		gap: 15px;
}
.block.block__text-icons .text-icons__icon {
		padding: 15px;
}
.block.block__text-icons .text-icons__icon img {
		width: 50px;
		height: 50px;
}
}
.block.block__form-background h2 {
	text-align: center;
	margin-bottom: 60px;
}
.block.block__form-background .form-background__content {
	padding: 75px 0;
}
.block.block__form-background .form-background__content .bg-image {
	padding: 60px auto;
}
.block.block__form-background .form-background__content .bg-orange {
	width: 80%;
	margin: 0 auto;
	padding: 60px;
	text-align: center;
	background-color: rgba(255, 122, 0, 0.75);
}
.block.block__form-background .form-background__content .application-form {
	display: flex;
	flex-direction: column;
	gap: 20px;
	flex-wrap: nowrap;
	align-items: normal;
}
.block.block__form-background .form-background__content .form-row {
	display: flex;
	gap: 20px;
	align-items: center;
}
.block.block__form-background .form-background__content .form-row.full-width,
.block.block__form-background .form-background__content .form-row.submit-row {
	justify-content: center;
}
.block.block__form-background .form-background__content .form-field {
	width: 100%;
	padding: 15px;
	border: none;
	background: var(--color__white);
	color: var(--color__black);
}
.block.block__form-background .form-background__content .form-field:focus {
	outline: none;
	box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}
.block.block__form-background .form-background__content .form-field::placeholder {
	color: var(--color__black);
}
.block.block__form-background .form-background__content .form-select {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23FF4D00' stroke='%23FF4D00' stroke-width='2' stroke-linecap='butt' stroke-linejoin='miter'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
	background-position: right 12px center;
	background-repeat: no-repeat;
	background-size: 28px;
	padding-right: 40px;
	font-family: var(--font) !important;
	font-size: 21px;
	font-weight: 400 !important;
}
.block.block__form-background .form-background__content .form-textarea {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	min-height: 120px;
	resize: vertical;
	width: 100%;
}
.block.block__form-background .form-background__content .file-upload-wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	background: none;
	padding: 15px;
	gap: 15px;
}
.block.block__form-background .form-background__content .file-upload-label {
	font-size: 21px;
	color: var(--color__white);
}
.block.block__form-background .form-background__content .file-upload-input {
	display: none;
}
.block.block__form-background .form-background__content .file-upload-btn {
	background: var(--color__white);
	padding: 10px 50px;
	border: none;
	border-radius: 20px;
	cursor: pointer;
	font-size: 21px;
	color: var(--color__black);
	transition: transform 0.3s ease;
}
.block.block__form-background .form-background__content .file-upload-btn:hover {
	transform: translateY(-2px) scale(1.025);
	/* box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4); */
}
.block.block__form-background .form-background__content .btn {
	margin-top: 30px;
	padding: 20px 75px;
	font-size: 21px;
	font-weight: 900;
	color: var(--color__dark-orange);
	background: var(--color__white);
	border-top-left-radius: 25px;
	border-bottom-right-radius: 25px;
	transition: background 0.3s ease, transform 0.3s ease;
}
.block.block__form-background .form-background__content .btn:hover {
	color: var(--color__white);
	background: #5c5348;
	transform: translateY(-3px) scale(1.05);
	/* box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3); */
}
	@media (max-width: 1024px) {
.block.block__form-background h2 {
		margin-bottom: 40px;
}
.block.block__form-background .form-background__content {
		padding: 50px 0;
}
.block.block__form-background .form-background__content .bg-orange {
		width: 90%;
		padding: 40px;
}
}
	@media (max-width: 768px) {
.block.block__form-background h2 {
		margin-bottom: 30px;
		font-size: 1.8rem;
}
.block.block__form-background .form-background__content {
		padding: 30px 0;
}
.block.block__form-background .form-background__content .bg-orange {
		width: 95%;
		padding: 25px;
		margin: 0 auto;
}
.block.block__form-background .form-background__content .application-form {
		gap: 15px;
}
.block.block__form-background .form-background__content .form-row {
		flex-direction: column;
		gap: 15px;
}
.block.block__form-background .form-background__content .form-field {
		padding: 12px;
}
.block.block__form-background .form-background__content .form-select {
		font-size: 18px;
		padding-right: 35px;
		background-size: 24px;
}
.block.block__form-background .form-background__content .file-upload-wrapper {
		gap: 10px;
		padding: 12px;
}
.block.block__form-background .form-background__content .file-upload-label {
		font-size: 18px;
}
.block.block__form-background .form-background__content .file-upload-btn {
		padding: 8px 30px;
		font-size: 18px;
}
.block.block__form-background .form-background__content .btn {
		margin-top: 20px;
		padding: 15px 50px;
		font-size: 18px;
}
}
	@media (max-width: 480px) {
.block.block__form-background h2 {
		margin-bottom: 20px;
		font-size: 1.5rem;
}
.block.block__form-background .form-background__content {
		padding: 20px 0;
}
.block.block__form-background .form-background__content .bg-orange {
		width: 98%;
		padding: 20px;
}
.block.block__form-background .form-background__content .application-form {
		gap: 12px;
}
.block.block__form-background .form-background__content .form-row {
		gap: 12px;
}
.block.block__form-background .form-background__content .form-field {
		padding: 10px;
}
.block.block__form-background .form-background__content .form-select {
		font-size: 16px;
}
.block.block__form-background .form-background__content .file-upload-wrapper {
		padding: 10px;
}
.block.block__form-background .form-background__content .file-upload-label {
		font-size: 16px;
}
.block.block__form-background .form-background__content .file-upload-btn {
		padding: 6px 25px;
		font-size: 16px;
}
.block.block__form-background .form-background__content .btn {
		margin-top: 15px;
		padding: 12px 40px;
		font-size: 16px;
}
.block.block__form-background .form-background__content .btn:hover {
		color: var(--color__white);
		background: #5c5348;
		transform: translateY(-3px) scale(1.05);
}
}
.block.block__contact-form {
	/* Left Column - Contact Info */
}
.block.block__contact-form select,
.block.block__contact-form textarea {
	font-family: var(--font);
	font-weight: 400 !important;
}
.block.block__contact-form .contact-container.col-grid {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	gap: 20px;
	align-items: stretch;
}
.block.block__contact-form .contact-info, .block.block__contact-form .form-section {
	display: flex;
	flex-direction: column;
	height: 100%; /* Ensures full height usage */
	/* Right Column - Form */
	/* Responsive Design */
}
.block.block__contact-form .contact-info .contact-info-title, .block.block__contact-form .contact-info .form-title, .block.block__contact-form .form-section .contact-info-title, .block.block__contact-form .form-section .form-title {
	font-size: 42px;
	font-weight: 900;
	margin-bottom: 30px;
	color: var(--color__main);
	text-align: center;
	text-transform: none;
}
.block.block__contact-form .contact-info .contact-info-content, .block.block__contact-form .contact-info .contact-form, .block.block__contact-form .form-section .contact-info-content, .block.block__contact-form .form-section .contact-form {
	flex: 1; /* Makes the content area expand to fill available space */
	display: flex;
	flex-direction: column;
}
.block.block__contact-form .contact-info .contact-info-content, .block.block__contact-form .form-section .contact-info-content {
	padding: 30px;
	background-color: var(--color__main);
}
.block.block__contact-form .contact-info .contact-section-title, .block.block__contact-form .form-section .contact-section-title {
	font-size: 21px;
	font-weight: 900;
	letter-spacing: 2;
	margin: 60px 0 20px 0;
	color: var(--color__white);
	text-transform: uppercase;
}
.block.block__contact-form .contact-info .contact-section-title:first-child, .block.block__contact-form .form-section .contact-section-title:first-child {
	margin-top: 0;
}
.block.block__contact-form .contact-info .contact-detail, .block.block__contact-form .form-section .contact-detail {
	margin: 5px 0;
	padding-top: 0;
	line-height: 1.4;
	color: var(--color__white);
}
.block.block__contact-form .contact-info .contact-link, .block.block__contact-form .form-section .contact-link {
	color: var(--color__white);
	text-decoration: none;
}
.block.block__contact-form .contact-info .contact-link:hover, .block.block__contact-form .form-section .contact-link:hover {
	color: #5c5348;
}
.block.block__contact-form .contact-info .social-links, .block.block__contact-form .form-section .social-links {
	margin-top: 15px;
}
.block.block__contact-form .contact-info .facebook-icon, .block.block__contact-form .form-section .facebook-icon {
	transition: transform 0.3s ease;
}
.block.block__contact-form .contact-info .facebook-icon:hover, .block.block__contact-form .form-section .facebook-icon:hover {
	transform: translateY(-3px) scale(1.05);
}
.block.block__contact-form .contact-info .contact-form, .block.block__contact-form .form-section .contact-form {
	padding: 45px;
	display: flex;
	flex-direction: column;
	gap: 20px;
	background-color: var(--color__main);
	flex-wrap: nowrap;
	align-items: normal;
}
.block.block__contact-form .contact-info .form-row, .block.block__contact-form .form-section .form-row {
	display: flex;
	gap: 15px;
}
.block.block__contact-form .contact-info .form-row.full-width, .block.block__contact-form .form-section .form-row.full-width {
	flex-direction: column;
}
.block.block__contact-form .contact-info .form-row.submit-row, .block.block__contact-form .form-section .form-row.submit-row {
	align-items: center;
	justify-content: center;
	margin-top: 10px;
}
.block.block__contact-form .contact-info .form-field, .block.block__contact-form .form-section .form-field {
	width: 100%;
	padding: 20px 15px;
	border: none;
	background-color: var(--color__white);
	transition: box-shadow 0.3s ease;
}
.block.block__contact-form .contact-info .form-field:focus, .block.block__contact-form .form-section .form-field:focus {
	outline: none;
	box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}
.block.block__contact-form .contact-info .form-field::placeholder, .block.block__contact-form .form-section .form-field::placeholder {
	color: var(--color__black);
}
.block.block__contact-form .contact-info .form-select, .block.block__contact-form .form-section .form-select {
	appearance: none;
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ff0000' stroke='%23ff0000' stroke-width='2' stroke-linecap='butt' stroke-linejoin='miter'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
	background-position: right 12px center;
	background-repeat: no-repeat;
	background-size: 28px;
	font-weight: 400;
	font-size: 21px;
}
.block.block__contact-form .contact-info .form-textarea, .block.block__contact-form .form-section .form-textarea {
	min-height: 120px;
	resize: vertical;
	font-family: inherit;
	line-height: 1.4;
}
.block.block__contact-form .contact-info .btn, .block.block__contact-form .form-section .btn {
	padding: 20px 75px;
	font-size: 21px;
	font-weight: 900;
	color: var(--color__main);
	background: var(--color__white);
	border-top-left-radius: 25px;
	border-bottom-right-radius: 25px;
	transition: background 0.3s ease, transform 0.3s ease;
}
.block.block__contact-form .contact-info .btn:hover, .block.block__contact-form .form-section .btn:hover {
	color: var(--color__white);
	background: #5c5348;
	transform: translateY(-3px) scale(1.05);
}
	@media (max-width: 768px) {
.block.block__contact-form .contact-info .contact-container, .block.block__contact-form .form-section .contact-container {
		flex-direction: column;
		margin: 0 20px;
}
.block.block__contact-form .contact-info .contact-info,
.block.block__contact-form .contact-info .form-section, .block.block__contact-form .form-section .contact-info,
.block.block__contact-form .form-section .form-section {
		padding: 30px 25px;
}
.block.block__contact-form .contact-info .contact-info-title,
.block.block__contact-form .contact-info .form-title, .block.block__contact-form .form-section .contact-info-title,
.block.block__contact-form .form-section .form-title {
		font-size: 24px;
		margin-bottom: 25px;
}
.block.block__contact-form .contact-info .form-row, .block.block__contact-form .form-section .form-row {
		flex-direction: column;
		gap: 15px;
}
.block.block__contact-form .contact-info .form-field, .block.block__contact-form .form-section .form-field {
		width: 100%;
}
}
	@media (max-width: 480px) {
.block.block__contact-form .contact-info .block__contact-form, .block.block__contact-form .form-section .block__contact-form {
		padding: 40px 0;
}
.block.block__contact-form .contact-info .contact-container, .block.block__contact-form .form-section .contact-container {
		margin: 0 15px;
}
.block.block__contact-form .contact-info .contact-info,
.block.block__contact-form .contact-info .form-section, .block.block__contact-form .form-section .contact-info,
.block.block__contact-form .form-section .form-section {
		padding: 25px 20px;
}
.block.block__contact-form .contact-info .contact-info-title,
.block.block__contact-form .contact-info .form-title, .block.block__contact-form .form-section .contact-info-title,
.block.block__contact-form .form-section .form-title {
		font-size: 22px;
}
.block.block__contact-form .contact-info .contact-section-title, .block.block__contact-form .form-section .contact-section-title {
		font-size: 13px;
}
.block.block__contact-form .contact-info .contact-detail, .block.block__contact-form .form-section .contact-detail {
		font-size: 15px;
}
}