/* Reset and base styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
	line-height: 1.6;
	max-width: 800px;
	margin: 0 auto;
	padding: 20px;
	background-color: #f4f4f4;
	color: #333;
}

/* Headings */
h1 {
	color: #000;
	text-align: center;
	margin-bottom: 20px;
	font-size: 2.1em;
	font-weight: 600;
}

h2 {
	color: #1d1d1f;
	border-bottom: 2px solid #1d1d1f;
	padding-bottom: 10px;
	margin: 30px 0 20px;
	font-size: 1.8em;
}

/* Paragraph */
p {
	margin-bottom: 20px;
	text-align: center;
}

/* Horizontal Rule */
hr {
	border: none;
	height: 1px;
	background-color: #d2d2d7;
	margin: 30px 0;
}

/* List Styling */
ul {
	list-style-type: none;
	background-color: #ffffff;
	border-radius: 12px;
	padding: 20px;
	box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

li {
	margin-bottom: 20px;
	padding: 15px;
	background-color: #f5f5f7;
	border-radius: 8px;
}

li strong {
	display: block;
	color: #1d1d1f;
	margin-bottom: 10px;
	font-size: 1.1em;
}

/* Responsive Design */
@media (max-width: 600px) {
	body {
		padding: 10px;
	}
	
	h1 {
		font-size: 2em;
	}
	
	h2 {
		font-size: 1.5em;
	}
}

/* Apple Vision Pro Inspired Accent */
li:hover {
	background-color: #e6e6e6;
	transition: background-color 0.3s ease;
}

img {
	position: relative;
	overflow: hidden;
	border-radius: 10px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}