:root {
  color-scheme: light;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  font-weight: 400;
  background: #fff;
  color: #111;
}

strong,
b {
  font-weight: 700;
}

header, main, footer {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px 24px;
}

header { flex: 0 0 auto; }
footer { flex: 0 0 auto; }
main  { flex: 1 1 auto; overflow: auto; }

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid #eaeaea;
}

h1 {
  margin: 0;
  font-size: 1.5rem;
}

h2 {
  margin-top: 28px;
  font-size: 1.2rem;
}

p {
  margin: 10px 0;
}

.muted {
  color: #555;
}

.hr {
  border: 0;
  border-top: 1px solid #cfcfcf;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

a.no-underline {
    text-decoration: none;
    border-bottom: none;
}

a:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}

a.mail-link,
a.mail-link:visited,
a.mail-link:hover,
a.mail-link:active {
  text-decoration: none;
  border-bottom: none;
}

body.home {
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

body.home main {
  flex: 1;
  max-width: none;
  width: 100%;
  margin: 0;
  display: flex;
  place-items: center;
  align-items: center;
  padding: 24px;
  overflow: hidden;
}

body.home .home-split {
  width: 100%;
  max-width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 45fr) minmax(0, 55fr);
  align-items: center;
}
@media (max-width: 1300px) {
  body.home .home-split {
    gap: 24px;
  }
}
@media (max-width: 900px) {
  body.home .home-split {
    grid-template-columns: 1fr;
  }
}

body.home .home-left,
body.home .home-right {
  min-width: 0;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}

body.home .home-left {
  display: flex;
}

body.home .home-right {
  display: block;
  max-width: 75ch;
}

body.home .home-text {
  text-align: justify;
  font-size: 1.1rem;
  line-height: 1.3;
}

body.home footer {
  display: flex;
  justify-content: center;
  border-top: none;
}

.logo {
  max-width: 520px;
  width: 100%;
  height: auto;
  display: block;
}

footer {
  border-top: 1px solid #cfcfcf;
  color: #555;
}

.footer-nav {
  display: flex;
  gap: 16px;
  justify-content: left;
  flex-wrap: wrap;
}

.footer-nav a {
  text-decoration: none;
  color: #555;
}

.footer-nav-index {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-nav-index a {
  text-decoration: none;
  color: #555;
}