.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: #333;
    transition: color 0.2s;
  }
  .nav-link:hover {
    color: #4A90E2;
  }
  .dark .nav-link:hover {
    color: #4A90E2;
  }
  
  .apply-btn {
    background-color: #4A90E2;
    color: white;
    font-weight: 700;
    border-radius: 0.5rem;
    height: 2.5rem;
    padding: 0 1.2rem;
    transition: 0.2s;
  }
  .apply-btn:hover {
    background-color: #3879c7;
  }
  
  .footer-link {
    color: #9ca3af;
    transition: 0.2s;
  }
  .footer-link:hover {
    color: #fff;
  }
  .footer-icon {
    color: #9ca3af;
    transition: 0.2s;
    font-size: 1.2rem;
  }
  .footer-icon:hover {
    color: #fff;
  }
  