body { 
    font-family: Arial, sans-serif; 
    max-width: 800px; 
    margin: 0 auto; 
    padding: 20px; 
    line-height: 1.6; 
}

h1 { 
    color: #333; 
}

.cta-button { 
    display: inline-block; 
    padding: 10px 20px; 
    background-color: #28a745; 
    color: white; 
    text-decoration: none; 
    border-radius: 5px; 
}

.cta-button:hover { 
    background-color: #218838; 
}

.features { 
    list-style: none; 
    padding: 0; 
}

.features li { 
    margin-bottom: 10px; 
}

.features li:before { 
    content: "✓ "; 
    color: #28a745; 
}

footer { 
    margin-top: 40px; 
    text-align: center; 
    color: #5E5E5E; 
}

.download-button {
	display: inline-block;
	padding: 10px 20px;
	background-color: #28a745;
	color: white;
	text-decoration: none;
	border-radius: 5px;
	font-weight: bold;
}

.download-button:hover {
	background-color: #218838;
}