/* Base Styles */
body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f7f9fc;
  margin: 0;
  padding: 0;
  color: #333;
}

.container {
  max-width: 700px;
  margin: 0 auto;
  padding: 2rem;
  text-align: center;
}

h1 {
  font-size: 2.5rem;
  color: #1a73e8;
  margin-bottom: 0.5rem;
}

.subtitle {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 2rem;
}

.link-list {
  list-style: none;
  padding: 0;
}

.link-list li {
  margin: 1rem 0;
}

.link-list a {
  text-decoration: none;
  font-size: 1.2rem;
  color: #1a73e8;
  border-bottom: 2px solid transparent;
  transition: 0.2s ease;
}

.link-list a:hover {
  border-bottom: 2px solid #1a73e8;
  color: #0b5394;
}

footer {
  margin-top: 3rem;
  font-size: 0.9rem;
  color: #999;
}
