:root {
  --color-primary-text: #021423;
  --color-secondary-text: #344a5c;
  --color-background: #f5f5f5;
  --color-text-primary: #021423;
  --color-text-secondary: #344a5c;
  --color-text-dark: #000000;
  --color-white: #ffffff;
  --color-border: #efefef;
  --color-surface: #ffffff;
}

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

body {
  font-family: 'Figtree', sans-serif;
  background-color: var(--color-background);
  color: var(--color-text-secondary);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.site-header {
  padding: 16px 20px;
  justify-content: center;
}

.header-bar {
  display: flex;
  align-items: center;
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 120px;
  padding: 18px 24px;
  max-width: 686px;
  margin: 0 auto;
  box-sizing: border-box;
}

.logo {
  display: block;
  width: 101.68px;
  height: 22px;
}

@media (max-width: 768px) {
  .header-bar {
    max-width: 90%;
  }

  .footer-container {
    gap: 40px;
  }
  .footer-nav {
    gap: 12px;
  }
}

.site-footer {
  padding: 36px 20px 56px;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
}

.footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}

.footer-logo {
  width: 101.68px;
  height: 22px;
}

.footer-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-link {
  font-family: 'Figtree', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.2;
  color: var(--color-secondary-text);
  text-decoration: none;
}

.footer-link:hover {
    color: var(--color-text-primary);
}

.footer-link-separator {
  width: 3.05px;
  height: 3.05px;
}

.footer-copyright {
  font-family: 'Figtree', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.2;
  color: var(--color-secondary-text);
  margin: 0;
  text-align: center;
}

