body {
  margin: 0;
  font-family: system-ui, sans-serif;
  background: #ffffff;
  color: #111;
}

.container {
  max-width: 600px;
  margin: 80px auto;
  text-align: center;
}

.title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.subtitle {
  font-size: 1rem;
  color: #555;
  margin-bottom: 40px;
}

.search-box {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.search-box input {
  width: 70%;
  padding: 12px;
  font-size: 1rem;
  border: 1px solid #ddd;
  border-radius: 8px;
}

.search-box button {
  padding: 12px 20px;
  font-size: 1rem;
  background: #111;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.search-box button:hover {
  background: #333;
}

.results {
  margin-top: 40px;
  text-align: left;
}

.results h2 {
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.results p {
  font-size: 1rem;
  line-height: 1.5;
}

.links {
  margin-top: 20px;
  display: flex;
  gap: 15px;
}

.links a {
  color: #111;
  font-weight: 600;
  text-decoration: none;
}

.links a:hover {
  text-decoration: underline;
}

.disclaimer {
  margin-top: 20px;
  font-size: 0.8rem;
  color: #777;
}

.footer {
  margin-top: 80px;
  text-align: center;
  padding: 20px;
  font-size: 0.8rem;
  color: #777;
}

.hidden {
  display: none;
}
