body {
  font-family: Arial, sans-serif;
  background: #fafafa;
  margin: 0;
  padding: 0;
}

header {
  background-color: #004080;
  color: white;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header h1 { margin: 0; font-weight: 900; }

nav a {
  color: white;
  margin-left: 1.2rem;
  text-decoration: none;
  font-weight: 600;
}

nav a:hover { text-decoration: underline; }

main {
  max-width: 900px;
  margin: 2rem auto;
  padding: 0 1rem;
  text-align: center;
}

#search-box {
  width: 100%;
  max-width: 600px;
  height: 38px;
  font-size: 1.1rem;
  padding: 0 10px;
  border: 2px solid #004080;
  border-radius: 5px;
  margin-bottom: 1rem;
}

#search-btn {
  background-color: #004080;
  color: white;
  border: none;
  padding: 10px 20px;
  font-weight: 700;
  border-radius: 5px;
  cursor: pointer;
}

#tabs {
  margin: 1rem 0;
  display: none;
}

#tabs button {
  background: none;
  border: none;
  margin: 0 0.5rem;
  padding: 0.5rem 1rem;
  border-bottom: 2px solid transparent;
  cursor: pointer;
}

#tabs button.active {
  border-bottom: 2px solid #004080;
  font-weight: bold;
}

#results {
  text-align: left;
  margin-top: 1rem;
}

footer {
  text-align: center;
  margin: 3rem 0 2rem;
  color: #666;
  font-size: 0.9rem;
}

/* popup */
#popup-menu {
  position: absolute;
  top: 60px;
  right: 25px;
  background: white;
  border: 2px solid #004080;
  border-radius: 10px;
  display: none;
  flex-direction: column;
  padding: 10px;
}
#news h2 {
  color: #004080;
}

.active-page {
  color: white;
  font-weight: 800;
  border-bottom: 2px solid white;
  margin-left: 1.2rem;
}

/* Sivusivujen sisältö (Tietoja, Tietosuoja, Lisät) */
main.page-content {
  max-width: 800px;
  margin: 2rem auto;
  padding: 1.5rem;
  background: white;
  border-radius: 10px;
  text-align: left;
}

/* otsikot sivuilla */
main.page-content h2 {
  color: #004080;
  margin-top: 0;
}

/* listat lisät-sivulla */
main.page-content ul {
  padding-left: 1.2rem;
}

main.page-content li {
  margin-bottom: 0.5rem;
}