body {
	margin: 0;
	padding: 1.5rem;
	background: #ffffff;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	color: #333333;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
	text-align: center;
	box-sizing: border-box;
}

.main-wrapper {
	max-width: 500px;
}

h1 {
	font-size: 2rem;
	margin-bottom: 0.5rem;
	color: #1e1e1e;
	animation: fadeIn 1.5s ease-in-out;
}

.info-box {
	padding: 0.8rem 1.2rem;
	margin-bottom: 1.5rem;
	animation: fadeIn 2s ease-in-out;
}

.info-box p {
	margin: 0;
	line-height: 1.4;
	color: #444444;
}

.link-container {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	width: 100%;
	animation: slideUp 2s ease-in-out;
}

.step {
	display: flex;
	align-items: flex-start;
	text-align: left;
	background-color: #f5f5f5;
	border-radius: 12px;
	padding: 1rem;
	border: 1px solid #e0e0e0;
	margin-bottom: 1rem;

	transition: transform 0.3s, box-shadow 0.3s;
}

.step:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
}

.step-number {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	background-color: #2e7d32;
	color: white;
	border-radius: 50%;
	font-weight: bold;
	margin-right: 1rem;
	flex-shrink: 0;
}

.step-content {
	flex-grow: 1;
}

.step-title {
	display: block;
	font-weight: 500;
	margin-bottom: 0.8rem;
	color: #1e1e1e;
}

a.button {
	padding: 0.8rem 1.2rem;
	background-color: #2e7d32;
	color: white;
	text-decoration: none;
	border-radius: 8px;
	font-weight: bold;
	transition: transform 0.3s, background-color 0.3s;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	display: inline-block;
}

a.button:hover {
	transform: scale(1.05);
	background-color: #1b5e20;
}

.logo {
	width: 100%;
	margin-bottom: 1.5rem;
	animation: fadeIn 1.5s ease-in-out;
	max-width: 80%;
}

/* Media queries for different screen sizes */
@media (max-width: 600px) {
	h1 {
		font-size: 1.5rem;
	}

	.info-box {
		padding: 0.6rem 1rem;
	}

	.info-box p {
		font-size: 0.9rem;
	}

	.step {
		padding: 0.8rem;
	}

	.step-number {
		width: 28px;
		height: 28px;
		font-size: 0.9rem;
	}

	.step-title {
		font-size: 0.9rem;
	}

	a.button {
		padding: 0.7rem 1rem;
		font-size: 0.9rem;
	}
}

/* Animations */
@keyframes fadeIn {
	from {
		opacity: 0;
		transform: scale(0.95);
	}

	to {
		opacity: 1;
		transform: scale(1);
	}
}

@keyframes slideUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}
