html {
  height: 100%;
  width: 100%;
}
body {
			font-family: Arial, sans-serif;
			background-color: #f7f7f7;
			margin: 0;
			padding: 0;
		}

		.container {
			max-width: 800px;
			margin: 0 auto;
			padding: 20px;
			background-color: #fff;
			box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
			border-radius: 5px;
			margin-top: 20px;
			margin-bottom: 20px;
		}

		h1 {
			font-size: 36px;
			margin-top: 0;
			text-align: center;
			color: #444;
			margin-bottom: 20px;
		}

		h2 {
			font-size: 24px;
			margin-top: 30px;
			margin-bottom: 10px;
			color: #555;
		}

		p {
			font-size: 16px;
			line-height: 1.5;
			margin-top: 0;
			margin-bottom: 20px;
			color: #666;
		}

		ul {
			list-style: disc;
			margin-left: 20px;
			margin-bottom: 20px;
		}

		li {
			margin-bottom: 10px;
			color: #666;
		}

		.contact {
			font-size: 16px;
			margin-top: 30px;
			margin-bottom: 20px;
			color: #666;
		}

		.contact a {
			color: #0088cc;
			text-decoration: none;
			font-weight: bold;
		}