@media (max-width: 600px) {
    .nav-bar {
        max-width: 100%;
    }
  .menu-toggle {
    display: block;
    font-size: 1.8rem;
    color: var(--text);
    cursor: pointer;
    padding: 3px 2px;
    border-radius: 8px;
    margin-right: 1px;
  }

  #menu-toggle.hover {
    background: var(--primary);
  }

  .nav-links {
    flex-direction: column;
    background: var(--muted);
    position: absolute;
    top: 70px;
    right: 1px;
    width: 150px;
    text-align: center;
    padding: 2px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    display: none;
  }

  .nav-links.active {
    display: flex;
    z-index: 2000;
  }

  .nav-links.hover {
    background: var(--subtext);
  }

  .nav-links a {
    padding: 10px;
    font-weight: 600;
  }

  .nav-container h1 {
    font-size: 23px;
  }

  .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 1px;
}

.logo img {
  width: 48px;
  height: 38px;
  background-color: white;
  border-radius: 50%;
}

  .hero {
  height: 280px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
  margin: auto;
  border-radius: 0;
}

.hero-content {
  max-width: 800px;
  height: 200px;
}


  .site-footer {
    padding: 5px;
    margin-bottom: 25px;
  }

  .footer-links {
    gap: 4px;
    line-height: 1.6;
  }

  .contact-card,
  .legal-container,
  .payment-card,
  .referral-card,
  .referral-note,
  .referral-section,
  .about-wrapper,
  .starter-pack-box,
  .maintenance-card,
  .about-parallax, 
  .graphics-card {
    padding: 8px 15px;
  }
}

@media (min-width: 601px) and (max-width: 992px) {
    .menu-toggle {
    display: block;
    font-size: 1.8rem;
    color: var(--text);
    cursor: pointer;
    padding: 6px 12px;
    border-radius: 8px;
  }

  .nav-links {
    flex-direction: column;
    background: var(--muted);
    position: absolute;
    top: 70px;
    right: 24px;
    width: 200px;
    text-align: center;
    padding: 12px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    display: none;
  }

  .nav-links.active {
    display: flex;
    z-index: 2000;
  }

  .nav-links a {
    padding: 10px;
    font-weight: 600;
  }

  footer {
    padding: 20px;
  }

}

@media (min-width: 993px) {
  nav ul {
    display: flex !important;
  }

  .menu-toggle {
    display: none;
  }
}