body {
  font-family: 'Geist', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background-color: #f7f7f7;
  color: #1a1a1a;
  margin: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: 80%;
  max-width: 960px;
  margin: 40px auto;
  background-color: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  flex-grow: 1;
}

header {
  border-bottom: 1px solid #ebebeb;
  padding-bottom: 20px;
  margin-bottom: 40px;
}

h1 {
  font-size: 36px;
  font-weight: 500;
  margin: 0;
}

h2 {
  font-size: 24px;
  font-weight: 500;
  margin-top: 40px;
}

p, li {
  line-height: 1.6;
  font-size: 16px;
  color: #4d4d4d;
}

.button {
  display: inline-block;
  background-color: #2f77c5;
  color: white;
  padding: 16px 24px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  transition: background-color 0.2s;
  margin-top: 20px;
}

.button:hover {
  background-color: #235a9a;
}

footer {
  text-align: center;
  padding: 20px;
  color: #666;
  font-size: 14px;
}

footer a {
  color: #2f77c5;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}
