* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	background-color: #f5f5ff;
	font-family: Arial, sans-serif;
}

.landing-card {
	background-color: #f0f3ff;
	width: 90%;
	max-width: 340px;
	padding: 20px;
	border-radius: 15px;
	box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
	text-align: center;
}

.icon img {
	width: 136px;
	height: 136px;
	margin-bottom: 20px;
}

h1 {
	font-family: "Open Sans", sans-serif;
	font-weight: 700;
	margin-bottom: 20px;
	font-size: 32px;
	line-height: 120%;
	letter-spacing: -0.01em;
	text-align: center;
	color: #000;
}

.steps {
	background: rgba(255, 255, 255, 0.5);
	padding: 16px;
	border-radius: 10px;
	margin-bottom: 20px;
	text-align: left;
}

.steps p {
	font-family: "Open Sans", sans-serif;
	font-weight: 600;
	margin-bottom: 20px;
	font-size: 16px;
	line-height: 130%;
	color: #000;
	letter-spacing: 0px;

}

.steps ul {
	list-style: none;
	color: #4b31ff;
}

.steps li {
	font-family: "Open Sans", sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 130%;
	margin-bottom: 10px;
	letter-spacing: 0px;
	color: #000;
}

.step-title {
	color: #4b31ff;
	font-weight: bold;
}

.download-btn {
	display: block;
	background-color: #4b31ff;
	color: white;
	padding: 12px 20px;
	font-size: 1rem;
	border: none;
	cursor: pointer;
	width: 100%;
	border-radius: 5px;
	padding: 16px;
	width: 100%;
	height: 56px;
	transition: all 0.3s ease;
	font-family: "SF Pro Display", sans-serif;
	font-weight: 500;
	font-size: 20px;
	line-height: 120%;
	text-align: center;
	color: #fff;
}

.download-btn:hover {
	transform: translateY(-2px);
}