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

:root {
  --primary: #0066FF;
  --primary-dark: #0052CC;
  --secondary: #00D4AA;
  --accent: #FF6B35;
  --text: #1A1A1A;
  --text-light: #6B7280;
  --bg: #FFFFFF;
  --bg-light: #F9FAFB;
  --bg-dark: #0F172A;
  --border: #E5E7EB;
}

html,
body {
  height: 100%;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

body>footer {
  margin-top: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
}

.header-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.logo {
  font-size: 28px;
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
  color: var(--primary);
  letter-spacing: -0.2px;
  line-height: 1.2;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
}

nav {
  position: relative;
}

nav {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

@media (max-width: 968px) {
  .header-container {
    flex-wrap: wrap;
  }

  .logo {
    font-size: 22px;
  }

  nav {
    display: contents;
  }

  nav ul {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    padding: 16px 0;
    border-top: 1px solid var(--border);
    margin-top: 8px;
    order: 1;
  }

  nav ul.open {
    display: flex;
  }

  nav ul li {
    width: 100%;
    text-align: center;
  }

  nav ul a {
    display: block;
    width: 100%;
  }
}

.clearfix:before,
.clearfix:after {
  display: table;
  content: " ";
}

.clearfix:after {
  clear: both;
}
