* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}
h1 {
  font-weight: 900;
  font-size: 40px;
  margin-bottom: 24px;
}
h2 {
  font-weight: 900;
  font-size: 32px;
  margin-bottom: 24px;
}
p {
  font-weight: 400;
  font-size: 16px;
  margin-bottom: 16px;
}
.header {
  background: #0b041a;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
}

.right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav {
  display: flex;
  gap: 24px;
}

.nav a {
  color: #f6faff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
}

.actions {
  display: flex;
  gap: 20px;
}

.logo {
  max-width: 140;
}

.logo img {
  width: 100%;
}

.btn {
  font-size: 16px;
  font-weight: 400;
  padding: 8px 16px;
  text-decoration: none;
  display: inline-block;
}

.btn-outline {
  color: #00a6ff;
  border: 1px solid #00a6ff;
}

.btn-fill {
  background: #00a6ff;
  color: #0b041a;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.burger span {
  width: 24px;
  height: 2px;
  background: #fff;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0b041a;
  display: none;
  flex-direction: column;
  padding: 16px;
  z-index: 1000;
}

.mobile-menu.active {
  display: flex;
}

.mobile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.close {
  font-size: 24px;
  cursor: pointer;
  color: #fff;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}

.mobile-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
}

.mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}

.footer {
  background: #0b041a;
  padding: 40px 0;
}

.footer-container {
  max-width: 1240px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-col h4 {
  font-size: 20px;
  font-weight: 600;
  color: #f6faff;
  margin-bottom: 24px;
}

.footer-col a {
  color: #f6faff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 4px;
}

.footer-col a:hover {
  color: #fff;
}

.footer-newsletter h4 {
  margin-bottom: 8px;
}

.footer-newsletter p {
  font-size: 16px;
  color: #f6faff;
  font-weight: 400;
  margin-bottom: 24px;
}

.newsletter-form {
  display: flex;
  gap: 20px;
}

.newsletter-form input {
  flex: 1;
  padding: 16px;
  border: 1px solid #d4d4d4;
  outline: none;
  background: #ffffff;
  font-size: 16px;
  border-radius: 4px;
}

.newsletter-form button {
  background: #00a6ff;
  color: #0b041a;
  border: none;
  padding: 16px;
  font-size: 16px;
  cursor: pointer;
  font-weight: 400;
}

.footer-line {
  height: 1px;
  background: #f6faffbf;
  margin: 20px 0 40px;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: #f6faff;
  font-size: 14px;
  font-weight: 300;
  text-decoration: none;
}

.footer-copy {
  font-size: 14px;
  color: #f6faffbf;
  font-weight: 300;
}

@media (max-width: 768px) {
  .container {
    padding: 16px;
  }

  .right {
    display: none;
  }

  .burger {
    display: flex;
  }
  .footer-links {
    justify-content: flex-start;
  }

  .footer-container {
    padding: 0 16px;
  }

  .newsletter-form input {
    font-size: 14px;
  }

  .newsletter-form button {
    font-size: 14px;
  }
  h1 {
    font-size: 32px;
  }
  h2 {
    font-size: 28px;
  }
}
