
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  display: flex;
  min-height: 100vh;
}
aside {
  width: 220px;
  background: #08013d;
  color: black;
  padding: 20px;
  flex-shrink: 0;
}
aside h1 {
  font-size: 1.5em;
  margin-bottom: 1em;
}
aside nav ul {
  list-style: none;
  padding: 0;
}
aside nav ul li {
  margin: 15px 0;
}
aside nav ul li a {
  color: white;
  text-decoration: none;
  font-size: 1.2em;
}
aside nav ul li a:hover {
  text-decoration: underline;
}
.language-switch {
  margin-top: 2em;
  font-size: 0.9em;
}
.language-switch a {
  color: #fbfce8;
  text-decoration: none;
}
main {
  flex: 1;
  background: #fff;
}
.hero {
  background: url('images/hero.jpg') center/cover no-repeat;
  height: 300px;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
  box-shadow: inset 0 -50px 50px -10px rgba(0, 0, 0, 0.7);
}
.hero h1 {
  font-size: 2.5em;
  margin: 0.2em 0;
}
.hero p {
  font-size: 1.2em;
  max-width: 800px;
}
.content {
  padding: 40px;
  max-width: 900px;
  margin: auto;
}
section {
  margin-bottom: 60px;
  border-bottom: 1px solid #161675;
  padding-bottom: 40px;
}
footer {
  background: #f4f4f4;
  padding: 20px;
  text-align: center;
  font-size: 0.9em;
  border-top: 1px solid #ccc;
}
.content ul li {
  margin-bottom: 1em;
}
