body {
  background-color: #f0f0f0; /* Light gray for contrast */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 20px;
}

.content-box {
  background-color: white; /* White box background */
  color: black; /* Black text */
  padding: 20px;
    box-shadow: 
    0 -8px 16px #C7C7C7, /* Top blurred line */
    0 8px 16px #C7C7C7;  /* Bottom blurred line */
  max-width: 1200px;
  margin: auto; /* Center the box horizontally */
}

h1 {
  font-size: 24px;
  margin-bottom: 15px;
}

p {
  margin-bottom: 15px;
}
