body {
	font-family: sans-serif;
	background: #f9f9f9;
	color: #333;
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
  }
  
  .container {
	background: #fff;
	padding: 2rem;
	border-radius: 12px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
	max-width: 600px;
	width: 100%;
  }
  
  h1 {
	font-size: 1.8rem;
	margin-bottom: 0.5rem;
  }
  
  p {
	line-height: 1.6;
  }
  
  .price {
	font-size: 1.4rem;
	margin: 1rem 0;
	font-weight: bold;
  }
  
  .button {
	display: inline-block;
	margin: 1rem 0;
	padding: 0.75rem 1.5rem;
	background-color: #4CAF50;
	color: white;
	text-decoration: none;
	border-radius: 8px;
	font-weight: bold;
  }
  
  form {
	margin-top: 2rem;
  }
  
  input, textarea {
	width: 100%;
	padding: 0.75rem;
	margin-bottom: 1rem;
	border-radius: 6px;
	border: 1px solid #ccc;
	font-size: 1rem;
  }
  
  button {
	background-color: #333;
	color: white;
	border: none;
	padding: 0.75rem 1.5rem;
	border-radius: 8px;
	cursor: pointer;
	font-size: 1rem;
  }
  