		body{
			margin:0;
			font-family: Arial, Helvetica, sans-serif;
			color:white;
		}

		.wrapper{
			max-width:900px;
			margin:0 auto;
			padding:24px;
		}

		header{
			border-radius:14px;
			padding:32px 20px;
			text-align:center;
			margin-bottom:30px;
		}

		header h1{
			margin:0 0 10px;
			font-size:30px;
		}

		header p{
			margin:0;
			color:#374151;
			font-size:16px;
		}

		.section{
			background:#ffffff;
			border-radius:12px;
			padding:22px;
			margin-bottom:22px;
		}

		.section h2{
			margin:0 0 10px;
			font-size:21px;
			color:#4f46e5;
		}

		.section p{
			margin:0;
			line-height:1.6;
			color:#374151;
		}

		.features{
			display:grid;
			grid-template-columns:repeat(auto-fit, minmax(220px, 1fr));
			gap:16px;
			margin-top:14px;
		}

		.feature{
			background:#f8fafc;
			border-radius:10px;
			padding:16px;
			border-left:5px solid #a5b4fc;
		}

		.feature strong{
			display:block;
			margin-bottom:6px;
			color:#4338ca;
		}

		footer{
			text-align:center;
			color:#6b7280;
			font-size:13px;
			margin-top:30px;
		}