/* General Styles */
body {
  font-family: Arial, sans-serif;
  color: #fff;
  background-color: #001f3f;
  margin: 0;
}

header {
  background-color: #00264d;
  padding: 1rem 0;
  text-align: center;
}

nav ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
}

nav li {
  margin: 0 1rem;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-size: 1.2rem;
}

nav a:hover {
  text-decoration: underline;
}

main {
  padding: 2rem;
  color: #fff;
}

h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  text-align: center;
}

h2.toggle-title {
  font-size: 2rem;  /* Make the titles bigger */
  text-align: center;  /* Center the titles */
  margin: 1rem 0;
  cursor: pointer;
  border-bottom: 2px dotted #fff;
}

.bio-content {
  display: none;
}

.bio-container {
  display: flex;
  align-items: flex-start;
  justify-content: center;  /* Center the content container */
}

.bio-image {
  width: 400px;  /* Adjust the size as needed */
  height: auto;
  margin-right: 2rem;
  border: 2px solid #b0b0b0;  /* Slightly gray silver frame */
  padding: 0.5rem;
}

.bio-text {
  max-width: 800px;
}

p {
  line-height: 1.6;
}

footer {
  background-color: #00264d;
  color: #fff;
  text-align: center;
  padding: 1rem 0;
  position: fixed;
  bottom: 0;
  width: 100%;
}

footer p {
  margin: 0;
}

nav ul.language-switcher {
  position: absolute;
  top: 0;
  right: 1rem;
  display: flex;
  align-items: center;
}

nav ul.language-switcher li {
  margin: 0;
}

nav ul.language-switcher li + li::before {
  content: ' / ';
  color: #fff;
}

nav ul.language-switcher a {
  color: #fff;
  text-decoration: none;
  font-size: 1.2rem;
}

nav ul.language-switcher a:hover {
  text-decoration: underline;
}
