/*body {
	background-color: #f8f9fa;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
	margin: 0;
}
.container {
	text-align: center;
	background-color: #ffffff;
	padding: 20px;
	border-radius: 8px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.btn-custom {
	width: 100%;
	margin-bottom: 10px;
}
.image-container {
	margin-top: 20px;
}
.image-container img {
	max-width: 100%;
	height: auto;
	border-radius: 8px;
}*/
/*
body {
	background-color: #f8f9fa;
	padding: 20px;
}
.container {
	text-align: center;
	background-color: #ffffff;
	padding: 20px;
	border-radius: 8px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	max-width: 1000px;
	margin: auto;
}
.btn-custom {
	width: 100%;
	margin-bottom: 30px;
}
.image-container {
	margin-top: 20px;
}
.image-container img {
	max-width: 100%;
	height: auto;
	border-radius: 0px;
}
*/

body {
	background-color: #f8f9fa;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	padding: 20px;
}
.container {
	text-align: center;
	background-color: #ffffff;
	padding: 40px;
	border-radius: 16px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	max-width: 1200px;
	margin: auto;
	transition: all 0.3s ease-in-out;
}
.container:hover {
	box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}
h1 {
	font-weight: 600;
	margin-bottom: 20px;
}
.btn-custom {
	width: 100%;
	margin-bottom: 20px;
	font-weight: 500;
	border-radius: 12px;
	padding: 15px;
	transition: background-color 0.2s, box-shadow 0.2s;
	font-size: 1.35rem; /* Extra large text */
	padding: 30px 40px; /* Extra large padding */
}
.btn-custom i {
	margin-right: 8px;
}
.btn-primary {
	background-color: #007aff;
	border: none;
}
.btn-primary:hover {
	background-color: #005bb5;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.btn-secondary {
	background-color: #636366;
	border: none;
}
.btn-secondary:hover {
	background-color: #3a3a3c;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.image-container {
	margin-top: 20px;
}
.image-container img {
	max-width: 100%;
	height: auto;
	border-radius: 0px;
}