:root {
	--mai-bg-color: #323728;
	--mai-primary-color: #035708;
	--mai-secondary-color: #6a8507;
	--mai-text-color: #e0e0e0;
	--mai-dark-gray: #1a1a1a;
	--mai-mid-gray: #2d2d2d;
	--mai-light-gray: #505050;
	--mai-border-radius: 4px;
	--mai-transition-speed: 0.3s;
	--mai-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
	--mai-font-family: 'Roboto', 'Segoe UI', Arial, sans-serif;
	--mai-header-height: 80px;
}

body {
	font-family: Arial, sans-serif;
	line-height: 1.6;

	margin: 0;
	padding: 0;
}

.thank-you-container {
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	background-color: var(--mai-bg-color);
}

.thank-you-content {
	background-color: white;
	padding: 3rem;
	border-radius: 10px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	text-align: center;
	max-width: 400px;
	width: 90%;
}

.thank-you-content h1 {
	color: #333;
	font-size: 2.5rem;
	margin-bottom: 1rem;
}

.thank-you-content p {
	color: #666;
	font-size: 1.1rem;
	line-height: 1.6;
	margin-bottom: 2rem;
}

.back-button {
	display: inline-block;
	background-color: #035708;
	color: white;
	padding: 12px 24px;
	border-radius: 5px;
	text-decoration: none;
	font-weight: 600;
	transition: background-color 0.3s ease;
}

.back-button:hover {
	background-color: #0c4510;
	color: white;
}

@media (max-width: 480px) {
	.thank-you-content {
		padding: 2rem;
	}

	.thank-you-content h1 {
		font-size: 2rem;
	}

	.thank-you-content p {
		font-size: 1rem;
	}
}
