
body {
	font-family: 'Inter', sans-serif;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	margin: 0;
	background-color: #f8f9fa; /* Light background */
	color: #343a40; /* Darker text for readability */
	text-align: center;
	padding: 20px;
	box-sizing: border-box; /* Include padding in element's total width and height */
}

.error-container {
	background-color: #ffffff;
	border-radius: 8px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	padding: 40px;
	max-width: 500px;
	width: 100%;
}

.brand-logo {
	margin-bottom: 0px; /* Space below the logo */
}

.brand-logo img {
	max-width: 150px; /* Adjust as needed for your logo size */
	height: auto;
	display: block; /* Ensures proper spacing */
	margin: 0 auto; /* Center the image */
}

.error-header h1 {
	font-size: 6em;
	margin: 0px;
	color: #dc3545; /* A common error red */
	font-weight: 600;
}

.error-header h2 {
	font-size: 1.8em;
	margin-top: 5px;
	color: #495057;
}

.error-message p {
	font-size: 1.1em;
	line-height: 1.6;
	margin-top: 30px;
	margin-bottom: 40px;
}

.error-actions {
	display: flex;
	flex-direction: column; /* Stack buttons on small screens */
	gap: 15px;
	margin-bottom: 40px;
}

.button-primary,
.button-secondary {
	display: inline-block;
	padding: 12px 25px;
	border-radius: 5px;
	text-decoration: none;
	font-weight: 600;
	transition: background-color 0.3s ease, color 0.3s ease;
}

.button-primary {
	background-color: #007bff; /* Primary blue */
	color: #ffffff;
	border: 1px solid #007bff;
}

.button-primary:hover {
	background-color: #0056b3;
	border-color: #0056b3;
}

.button-secondary {
	background-color: #ffffff;
	color: #007bff;
	border: 1px solid #007bff;
}

.button-secondary:hover {
	background-color: #e9ecef;
	color: #0056b3;
}

.contact-info {
	font-size: 0.9em;
	color: #6c757d;
}

.contact-info a {
	color: #007bff;
	text-decoration: none;
}

.contact-info a:hover {
	text-decoration: underline;
}

/* Responsive adjustments */
@media (min-width: 576px) {
	.error-actions {
		flex-direction: row; /* Buttons side-by-side on larger screens */
		justify-content: center;
	}
}