body {
	font-family: sans-serif;
	margin: 0;
	line-height: 1.6;
	background-color: #f4f4f4;
	font-size: 18px; /* Base font size */
}
details {
	margin-bottom: 15px; /* Add spacing below each details element */
	border: 1px solid #eee; /* Add a subtle border */
	padding: 10px;
	border-radius: 5px; /* Add rounded corners */
	background-color: #f9f9f9; /* Light gray background */
}
summary {
	padding: 10px 15px;
	font-weight: bold;
	cursor: pointer;
	list-style: none;
	margin-bottom: 5px; /* Extra spacing below the summary */
	background-color: #eee; /* Lighter gray background for summary */
	border-bottom: 1px solid #ddd;  /* Small divider */
}
 summary::-webkit-details-marker {
 display: none; /* Hide the default bullet point marker (only for webkit browsers) */
}
details[open] summary {
	background-color: #e0e0e0; /* Highlight on open */
}
details p {
	margin-top: 10px; /* Increase spacing between summary and content */
	line-height: 1.6; /* Keep consistent line height */
}
header {
	background-color: #333;
	color: white;
	padding: 1em 0;
	text-align: center;
}
h1, h2 {
	text-align: center;
	margin-bottom: 10px; /* add spacing below headings */
}
nav {
	background-color: #444;
	overflow: hidden;
	padding: 10px;
	text-align: center;
}
nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
	text-align: center;
}
nav li {
	display: inline-block;
	margin: 0 10px;
}
nav a {
	display: block;
	color: white;
	padding: 10px 20px;
	text-decoration: none;
	border-radius: 5px;
}
nav a:hover {
	background-color: #ddd;
	color: black;
}
main {
	max-width: 1230px;
	margin: 0 auto;
	padding: 20px;
	background-color: white;
}
section {
	margin-bottom: 30px;
	padding: 20px;
	background-color: #fff;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	border-radius: 8px;
	position: relative; /* Added for positioning the separators */
}
section:nth-child(even) {
	background-color: #f9f9f9;
}
section > *:first-child {
	margin-top: 0;
}
p, ul, ol, li {
	line-height: 1.8; /* Increased line height */
	margin-bottom: 10px; /* Add spacing below each element*/
}
#separator {
	border-top: 1px solid #ddd;
	margin: 20px 0;
}
footer {
	text-align: center;
	padding: 10px;
	background-color: #333;
	color: white;
}
button {
	background-color: #4CAF50;
	border: none;
	color: white;
	padding: 15px 32px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 16px;
	margin: 10px 0;
	cursor: pointer;
	border-radius: 5px;
}
button a {
	color: white;
	text-decoration: none;
}
 @media (max-width: 768px) {
nav li {
	display: block;
	margin: 5px 0;
	width: 100%;
	text-align: center;
}
nav a {
	width: 100%;
	text-align: center;
	display: block;
}
button {
	width: 80%;
	margin-left: auto;
	margin-right: auto;
}
}