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

body {
  font-family: 'Gotham Pro';
  background-color: #F4F8FB;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #F4F8FB;
  padding: 26px 80px;
  z-index: 1000;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 36px;
}

.nav-links li a {
  color: #464B54;
  text-decoration: none;
  transition: color 0.3s;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.15em;
  font-weight: 550;
  font-family: 'Gotham Pro';
}

.nav-links li a:hover {
  color: #F2994A;
}

.nav-links li a.active-link {
  color: #F2994A;
}

/*FOOTER*/
.site-footer {
  background: #0a2237;
  padding: 2rem 4rem;
  color: #fff;
  font-family: 'Gotham Pro', sans-serif;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
}

.footer-logo {
  width: 100px;
  height: auto;
}

.footer-btn {
  display: inline-block;
  background: #f2994a;
  color: #fff;
  padding: 12px 20px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.footer-btn:hover {
  background: #d97706;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-socials {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.footer-socials img {
  width: 24px;
  height: 24px;
}

.footer-copy {
  font-size: 14px;
  font-weight: 600;
  color: #4F6289;
}

/* MOBILE RESPONSIVE STYLES */
@media (max-width: 767px) {
  /* Navigation */
  .navbar {
    padding: 16px 24px;
    position: relative;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: #F4F8FB;
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 24px 24px;
    gap: 24px;
    transition: right 0.3s ease;
    z-index: 999;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links li a {
    font-size: 14px;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    cursor: pointer;
    z-index: 1000;
  }

  .menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #464B54;
    transition: all 0.3s ease;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  /* Footer */
  .footer-top {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }

  .footer-btn {
    width: 100%;
    text-align: center;
  }
}