body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: #f9f9f9;
  color: #333;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
}

.container {
  max-width: 600px;
  padding: 40px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

h1 {
  font-size: 2em;
  margin-bottom: 0.5em;
  color: #004080;
}

p {
  font-size: 1.1em;
  margin-bottom: 1em;
}

a {
  color: #0073e6;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.logo {
  margin-bottom: 1.5em;
}

footer {
  margin-top: 2em;
  font-size: 0.85em;
  color: #aaa;
}

/* Language Switcher Styling */
.language-switcher {
  margin: 10px 0 20px;
}
.language-switcher select {
  padding: 5px;
  font-size: 1em;
}

