body {
	padding: 2rem;
	font-family: -apple-system, BlinkMacSystemFont, "Arial", sans-serif;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	min-height: 100vh;
	margin: 0;
}

.container {
	max-width: 800px;
	margin: 0 auto;
}

.header {
	text-align: center;
	margin-bottom: 2rem;
	color: white;
}

.header h1 {
	font-size: 2.5rem;
	margin-top: 0;
	margin-bottom: 0.5rem;
}

.subtitle {
	font-size: 1.2rem;
	opacity: 0.9;
}

.card {
	max-width: 800px;
	margin: 0 auto 1.5rem auto;
	padding: 2rem;
	background: white;
	border-radius: 16px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.card h2 {
	margin-top: 0;
	color: #333;
	border-bottom: 2px solid #667eea;
	padding-bottom: 0.5rem;
}

.card p {
	color: #555;
	font-size: 1rem;
	line-height: 1.6;
	margin-bottom: 1rem;
}

.card p:last-child {
	margin-bottom: 0;
}

.feature-list {
	list-style: none;
	padding: 0;
}

.feature-list li {
	margin-bottom: 1rem;
	padding-left: 1.5rem;
	position: relative;
}

.feature-list li:before {
	content: "✓";
	position: absolute;
	left: 0;
	color: #667eea;
	font-weight: bold;
}

.sub-list {
	list-style: disc;
	margin-top: 0.5rem;
	padding-left: 2rem;
}

.sub-list li {
	margin-bottom: 0.5rem;
}

.steps {
	list-style: decimal;
	padding-left: 2rem;
}

.steps li {
	margin-bottom: 1rem;
	line-height: 1.6;
}

code {
	background: #f4f4f4;
	padding: 0.2rem 0.4rem;
	border-radius: 4px;
	font-family: "Courier New", monospace;
	font-size: 0.9rem;
}

.cta {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
}

.cta h2 {
	color: white;
	border-bottom-color: rgba(255, 255, 255, 0.3);
}

.cta p {
	color: white;
}

.btn {
	display: inline-block;
	background: white;
	color: #667eea;
	padding: 0.75rem 1.5rem;
	border-radius: 8px;
	text-decoration: none;
	font-weight: bold;
	margin-top: 1rem;
	transition: transform 0.2s, box-shadow 0.2s;
}

.btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.footer {
	text-align: center;
	margin-top: 2rem;
	color: white;
	padding: 1rem;
}

.footer a {
	color: white;
	text-decoration: underline;
}
