* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: white;
    color: #677788;
}

/*========== NAV BAR ==========*/
.navbar {
    display: flex; 
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    border-bottom: 1px solid #eee;
    background-color:  #F6F8FA;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 32px;
    margin-right: 10px;
}

.logo span {
    font-size: 24px;
    font-weight: 700;
    color: #2563eb;
}

.nav-group {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: #2563eb;
    transform: translateY(-3px);
}

.buy-now, .play-video, .form-submit {
    background-color: #2563eb;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.buy-now:hover, .play-video:hover, .form-submit:hover {
    background-color: #fff;
    color: #2563eb;
    border: 2px solid #2563eb;
}

 .hamburger {
    font-size: 20px;
    font-weight: 900;
    background: none;
    border: none;
    color: #677788;
    display: none;
    cursor: pointer;
}

/*========== FOOTER ==========*/
.footer {
  background-color: white;
  padding: 60px 40px;
  border-top: 1px solid #e5e7eb;
  color: #333;
  font-family: 'Inter', sans-serif;
}

.footer-container {
  display: flex;
  flex-basis: 50%;
  gap: 40px;
  justify-content: space-between;
}

.footer-brand img {
  width: 100px;
  margin-bottom: 20px;
}

.footer-brand p {
  color: #677788;
  margin: 5px 0;
}

.footer-brand a {
  color: #2563eb;
  text-decoration: none;
}

footer i {
  color: #677788;
  font-size: 12px;
  font-weight: 900;
  padding: 5px;
}

.footer-icon-row {
  display: flex;
  align-items: center;
  gap: 5px;
}

.footer-nav {
  display: flex;
  gap: 40px;
}

.footer-column h4 {
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column li {
  margin-bottom: 10px;
}

.footer-column a {
  text-decoration: none;
  color: #677788;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: #2563eb;
}

.hiring-badge {
  background-color: #2563eb;
  color: white;
  font-size: 10px;
  border-radius: 10px;
  padding: 2px 6px;
  margin-left: 6px;
}
