/* Reset basic margin and set default font */
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

@font-face {
	font-family: "Outfit";
	font-style: normal;                    /* regular style */
	font-weight: 400;                      /* regular weight */
	font-display: swap;                    /* show fallback font until loaded */
	src: url("outfit-v15-latin-regular.woff2") format("woff2");
}

body {
	font-family: "Outfit", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	background: #E9EDF0;
	color: #111827;
	height: 100vh;
	display: flex;
	justify-content: center;  /* center horizontally */
	align-items: center;      /* center vertically */
}

.align-top {
	align-items: flex-start;
}

.align-text-left {
	text-align: left;
}

.container {
	text-align: center;       /* center text and inline-block elements */
	padding: 20px;
}

.logo {
	margin-bottom: 24px;
}

.logo img {
	max-width: 500px;
	width: 100%;
	height: auto;
	display: block;
	margin: 0 auto;
}

h1,
h2,
h3,
h4 {
	margin-bottom: 10px;
}

h1 {
	font-size: 40px;
}

h2 {
	font-size: 30px;
}

h3 {
	font-size: 24px;
}

h4 {
	font-size: 22px;
}

.button-group {
	display: flex;
	gap: 12px;               /* space between buttons */
	justify-content: center;
	flex-wrap: wrap;         /* allow wrapping for small screens */
}

.button-group a {
/* Basic button styling */
display: inline-block;
padding: 13px 20px;
border-radius: 5px;
border: none;
text-decoration: none;
background: #374BEB;
color: white;
font-weight: 500;
transition: .4s ease;
min-width: 120px;
text-align: center;
font-size: 16px;
}

.button-group a:hover {
	background: #00005A;
	transform: translateY(-2px);
}

.button-group a:active {
	transform: translateY(0);
	box-shadow: none;
}

.text {
	margin-top: 50px;
	padding-bottom: 30px;
}

.text a {
	color: #111827;
	text-decoration: underline;
	word-break: break-all;
}

#footer {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background: #E9EDF0;
	text-align: center;
	padding: 30px 15px;
}

#footer ul li {
	display: inline-block;
	margin: 0 15px;
}

#footer ul li a {
	color: #111827;
	text-decoration: none;
}

p {
	font-size: 20px;
	line-height: 1.4em;
	margin-bottom: 30px;
}

/* Mobile: stack buttons vertically */
@media (max-width: 600px) {

	h1 {
		font-size: 32px;
	}

	h2 {
		font-size: 28px;
	}

	h3 {
		font-size: 24px;
	}

	p {
		font-size: 16px;
	}

	.button-group {
		flex-direction: column;
		align-items: stretch;
	}

	.button-group a {
		width: 100%;
	}
}