:root {
  --text: #171717;
  --muted: #545454;
  --line: #eeeeee;
  --bg: #ffffff;
  --dot1: #8D69E1;
  --dot2: #F473C1;
  --dot3: #e1bd69;
  --btn: #d9d9db;
}
* {
  box-sizing: border-box;
}
html, body {
  height: 100%;
}
body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}
.menu {
  font-size: 22px;
  line-height: 1;
  color: var(--text);
  text-decoration: none;
  padding: 10px 12px;
  border-radius: 999px;
}
.wrapper {
  min-height: calc(100vh - 56px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
}
.content {
  width: min(680px, 100%);
}
.points {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 28px;
}
.point {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--muted);
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
}
h1 {
  margin: 0 0 18px 0;
  font-size: 35px;
  line-height: 54px;
  font-weight: 700;
  letter-spacing: 0.2px;
}
h2 {
  margin: 18px 0 18px 0;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.1px;
}
p {
  margin: 0;
  font-size: 17px;
  line-height: 26px;
  color: var(--muted);
}
p + p {
  margin-top: 14px;
}
p a {
  color: #1976d2;
}
.ctaRow {
  margin-top: 28px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.langbar {
  display: flex;
  justify-content: flex-end;
  gap: .5rem;
  padding: .5rem 1rem;
}
.langbtn {
  background-color: #efefef;
  border: none;
  color: black;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  margin: 4px 2px;
  cursor: pointer;
  border-radius: 16px;
}
.sectionTitle {
  margin-top: 28px;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--muted);
}
.hr {
  height: 1px;
  background: var(--line);
  margin: 18px 0;
}
/* Style the navigation menu */
.topnav {
  overflow: hidden;
  background-color: #ffffff;
}
.topnav a {
  float: left;
  display: block;
  color: #111111;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}
.topnav a:hover {
  background-color: #ffffff;
  color: black;
}
.topnav a.active {
  background-color: #ffffff;
  color: black;
}
.topnav .icon {
  display: none;
}
.menuIcon {
  font-size: 28px;
  line-height: 1;
  display: inline-block;
}
.footer {	
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: #efefef;
  color: black;
  text-align: center;
}
.footer p {
  bottom: 0;
  width: 100%;
  background-color: #efefef;
  color: black;
  text-align: center;
  font-size: 12px;
}
@media screen and (max-width: 600px) {
  .topnav a:not(:first-child) {
    display: none;
  }
  .topnav a.icon {
    float: right;
    display: block;
  }
}
@media screen and (max-width: 600px) {
  .topnav.responsive {
    position: relative;
  }
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
}