body {
	//background-color: #f0f0f0; /* Light grey background to show contrast */
	//padding: 20px; /* Adds space around the main container */
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh; /* Makes the body take up at least the full viewport height */
	margin: 0; /* Removes default body margin */
}
.main-container {
	background-color: #D5E2FA;
	border-radius: 15px; /* Adjust as needed */
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Optional: adds shadow for better visibility */
	width: auto; /* Adjust based on your content */
	//max-width: 600px; /* Maximum width */
	//margin: 20px; /* Adds some space around the container */
	padding: 20px; /* Padding inside the container */
}

.faq-section {
	border-bottom: 1px solid #ccc;
	margin-bottom: 4px;
}

.faq-section h2 {
	cursor: pointer;
}

.faq-item {
	display: none;
	//padding: 10px;
}