/* Base Styles */
body {
  font-family: sans-serif;
  margin: 0;
  padding: 0;
  background: #f5f5f5;
}

/* Header */
header {
  background: #004080;
  color: white;
  padding: 1em;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

nav ul {
  display: flex;
  gap: 1em;
  list-style: none;
  padding-left: 100px;
  margin: 0;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

#languageSwitcher {
  padding: 0.3em;
  font-size: 1em;
}

/* Section Styling */
section {
  min-height: 100vh;
  padding: 2em;
  border-bottom: 1px solid #ccc;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: left;
}

section h2 {
  font-size: 2em;
  margin-bottom: 1em;
}

section h1 {
  font-size: 3em;
  margin-bottom: 1em;
  margin-left: 1em;
  margin-right: 1em;
  text-align: center;
}

section p {
  max-width: 800px;
  font-size: 1.1em;
  line-height: 1.6;
}
