@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

body {
  font-family: 'Roboto', sans-serif;
  background: #003366;
  margin: 0;
  padding: 0;
}

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

/* New flex container for logo + title */
.header {
  display: flex;
  align-items: center;
  gap: 16px; /* space between logo and text */
  margin-bottom: 30px;
}

.header img {
  height: 40px; /* adjust logo size */
  width: auto;
}

h1 {
  margin: 0;
  color: #2c3e50;
  font-size: 2rem;
}

h2 {
  margin-top: 40px;
  color: #34495e;
  font-size: 18px;
  border-bottom: 1px solid #dcdcdc;
  padding-bottom: 8px;
}

ul {
  list-style: none;
  padding: 0;
}

li {
  margin: 8px 0;
}

a {
  color: #003366;
  text-decoration: none;
  padding: 4px 8px;
  border-radius: 4px;
  transition: background 0.2s;
}

a:hover {
  background: #003366;
  color: #fff;
}

#search {
  width: 100%;
  padding: 12px;
  margin: 20px 0 30px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

#search:focus {
  outline: none;
  border-color: #3498db;
  box-shadow: 0 0 4px #3498db88;
}
