/* ------------------------------------------------------------------
Font Face Declarations
------------------------------------------------------------------ */
@font-face {
	font-family: "AvenirNext forINTUIT";
	src: url('/fonts/avenir-next/AvenirNextforINTUIT-Regular.eot');
	src: url('/fonts/avenir-next/AvenirNextforINTUIT-Regular.eot?#iefix') format('embedded-opentype'),
		 url('/fonts/avenir-next/AvenirNextforINTUIT-Regular.woff') format('woff'),
		 url('/fonts/avenir-next/AvenirNextforINTUIT-Regular.ttf') format('truetype'),
		 url('/fonts/avenir-next/AvenirNextforINTUIT-Regular.svg#AvenirNextforINTUIT-Regular') format('svg');
	font-weight: 400;
	font-style: normal;
}


@font-face {
	font-family: "AvenirNext forINTUIT";
	src: url('/fonts/avenir-next/AvenirNextforINTUIT-Demi.eot');
	src: url('/fonts/avenir-next/AvenirNextforINTUIT-Demi.eot?#iefix') format('embedded-opentype'),
		 url('/fonts/avenir-next/AvenirNextforINTUIT-Demi.woff') format('woff'),
		 url('/fonts/avenir-next/AvenirNextforINTUIT-Demi.ttf') format('truetype'),
		 url('/fonts/avenir-next/AvenirNextforINTUIT-Demi.svg#AvenirNextforINTUIT-Demi') format('svg');
	font-weight: 600;
	font-style: normal;
}

/* ------------------------------------------------------------------
Global Styles
------------------------------------------------------------------ */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: "AvenirNext forINTUIT", 'AvenirNext', 'Avenir Next', 'Helvetica Neue', Helvetica, Arial, sans-serif;
	margin: 0;
	padding: 0;
	background-color: #ffffff;
	color: #393a3d;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

.hidden {
	display: none !important;
}

/* ------------------------------------------------------------------
Header
------------------------------------------------------------------ */
.header {
	padding: 20px 0;
}

.header-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo-container {
	flex: 0 0 auto;
}

.logo-img {
	height: 32px;
	width: auto;
}

.language-selector {
	flex: 0 0 auto;
}

.language-selector select {
	padding: 8px 32px 8px 16px;
	font-size: 14px;
	font-weight: 400;
	color: #393a3d;
	background-color: #ffffff;
	border: 1px solid #d1d3d4;
	border-radius: 4px;
	cursor: pointer;
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23393a3d' d='M1.41 0L6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 12px center;
	background-size: 12px;
	transition: border-color 0.2s;
}

.language-selector select:hover {
	border-color: #0077c5;
}

.language-selector select:focus {
	outline: none;
	border-color: #0077c5;
	box-shadow: 0 0 0 2px rgba(0, 119, 197, 0.1);
}

/* ------------------------------------------------------------------
Container
------------------------------------------------------------------ */
.container {
	width: 100%;
	margin: 0 auto;
	padding: 0 24px;
}

/* ------------------------------------------------------------------
Main Content
------------------------------------------------------------------ */
.main-content {
	flex: 1;
	justify-content: center;
	padding: 60px 0;
}

.content-wrapper {
	width: 100%;
	margin: 0 auto;
	text-align: center;
}

.illustration {
	margin-bottom: 40px;
	display: flex;
	justify-content: center;
}

.maintenance-img {
	max-width: 220px;
	width: 100%;
	height: auto;
}

.text-content {
	margin-bottom: 24px;
}

.main-heading {
	font-size: 34px;
	font-weight: 600;
	line-height: 1.25;
	color: #21262A;
	text-align: center;
	margin-bottom: 16px;
}

.sub-text {
	font-size: 20px;
	font-weight: 400;
	line-height: 1.5;
	color: #5D686F;
	text-align: center;
	margin-bottom: 32px;
}

.btn-primary {
	display: inline-block;
	padding: 12px 32px;
	font-size: 20px;
	font-weight: 600;
	color: #ffffff;
	background-color: #205EA3;
	border: none;
	border-radius: 4px;
	text-decoration: none;
	cursor: pointer;
	transition: background-color 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
	background-color: #005a99;
	box-shadow: 0 2px 8px rgba(0, 119, 197, 0.3);
}

.btn-primary:active {
	background-color: #004a7f;
}

/* ------------------------------------------------------------------
Footer
------------------------------------------------------------------ */
.footer {
	padding: 24px 0;
}

.copyright {
	font-size: 14px;
	font-weight: 400;
	color: #21262A;
	text-align: center;
	line-height: 1.5;
}

/* ------------------------------------------------------------------
Responsive Design
------------------------------------------------------------------ */
@media only screen and (max-width: 768px) {
	.header {
		padding: 16px 0;
	}

	.logo-img {
		height: 28px;
	}

	.main-content {
		padding: 40px 0;
	}

	.maintenance-img {
		max-width: 200px;
	}

	.main-heading {
		font-size: 28px;
		margin-bottom: 12px;
	}

	.sub-text {
		font-size: 16px;
		margin-bottom: 24px;
	}

	.btn-primary {
		padding: 10px 24px;
		font-size: 20px;
	}
}

@media only screen and (max-width: 480px) {
	.container {
		padding: 0 16px;
	}

	.header {
		padding: 12px 0;
	}

	.logo-img {
		height: 24px;
	}

	.language-selector select {
		padding: 6px 28px 6px 12px;
		font-size: 13px;
	}

	.main-content {
		padding: 32px 0;
	}

	.illustration {
		margin-bottom: 32px;
	}

	.maintenance-img {
		max-width: 140px;
	}

	.main-heading {
		font-size: 24px;
		margin-bottom: 10px;
	}

	.sub-text {
		font-size: 16px;
		margin-bottom: 20px;
		padding: 0 8px;
	}

	.btn-primary {
		width: 100%;
		max-width: 280px;
		padding: 12px 24px;
		font-size: 20px;
	}

	.footer {
		padding: 20px 0;
	}

	.copyright {
		font-size: 12px;
		padding: 0 8px;
	}
}