/* Reset some default styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  background-color: #f9f9f9;
  color: #222;
  line-height: 1.6;
  padding: 2rem;
}

.container {
  max-width: 700px;
  margin: 0 auto;
  background: #fff;
  padding: 2rem 3rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #004080;
  text-align: center;
}

h2 {
  font-size: 1.5rem;
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
  color: #0066cc;
  border-bottom: 2px solid #0066cc;
  padding-bottom: 0.3rem;
}

p {
  margin-bottom: 1rem;
  font-size: 1rem;
  color: #333;
}

ul {
  list-style-type: disc;
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

ul li {
  margin-bottom: 0.5rem;
}

a {
  color: #007aff;
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: underline;
}

address {
  font-style: normal;
  margin-top: 0.5rem;
  font-size: 1rem;
  color: #555;
}
